mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2024-12-13 01:50:53 +01:00
13 lines
190 B
Go
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
|
|
}
|