refactor-for-testability (#3)

Co-authored-by: jdl <jdl@desktop>
Co-authored-by: jdl <jdl@crumpington.com>
Reviewed-on: #3
This commit was merged in pull request #3.
This commit is contained in:
2025-03-01 20:02:27 +00:00
parent a0b5058544
commit 1d3cc1f959
68 changed files with 3908 additions and 1547 deletions

View File

@@ -2,10 +2,10 @@ package main
import (
"log"
"vppn/node"
"vppn/peer"
)
func main() {
log.SetFlags(0)
node.Main()
peer.Main()
}