mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 01:20:26 +08:00
12 lines
166 B
Go
12 lines
166 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeNode/internal/nodes"
|
||
|
|
_ "github.com/iwind/TeaGo/bootstrap"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
node := nodes.NewNode()
|
||
|
|
node.Start()
|
||
|
|
}
|