mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 00:45:12 +08:00
12 lines
141 B
Go
12 lines
141 B
Go
package nodes
|
|
|
|
import (
|
|
_ "github.com/iwind/TeaGo/bootstrap"
|
|
"testing"
|
|
)
|
|
|
|
func TestNode(t *testing.T) {
|
|
node := NewNode()
|
|
node.Start()
|
|
}
|