1
0
forked from extern/smegmesh
smegmesh/pkg/ipc/ipctypes.go

13 lines
190 B
Go
Raw Normal View History

package ipc
2023-09-20 00:50:44 +02:00
import "github.com/tim-beatham/wgmesh/pkg/ctrlserver"
type JoinMeshArgs struct {
MeshId string
IpAdress string
}
2023-09-20 00:50:44 +02:00
type GetMeshReply struct {
Nodes []ctrlserver.MeshNode
}