vppn/node/shared_test.go
2025-01-22 14:09:43 +01:00

17 lines
227 B
Go

package node
import "vppn/m"
// TODO:
var sharedStateForTesting = func() sharedState {
ss := newSharedState(
"testNet",
"http://localhost:39499",
"123",
localConfig{
PeerConfig: m.PeerConfig{},
})
return ss
}