smegmesh/pkg/ipc/ipctypes.go
2023-09-19 23:50:44 +01:00

13 lines
190 B
Go

package ipc
import "github.com/tim-beatham/wgmesh/pkg/ctrlserver"
type JoinMeshArgs struct {
MeshId string
IpAdress string
}
type GetMeshReply struct {
Nodes []ctrlserver.MeshNode
}