临时提交

This commit is contained in:
GoEdgeLab
2020-07-21 11:18:47 +08:00
commit cb5d9feb7a
32 changed files with 729 additions and 0 deletions

11
cmd/edge-node/main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"github.com/TeaOSLab/EdgeNode/internal/nodes"
_ "github.com/iwind/TeaGo/bootstrap"
)
func main() {
node := nodes.NewNode()
node.Start()
}