15 lines
300 B
Go
15 lines
300 B
Go
package beacon
|
|
|
|
import "git.send.nrw/sendnrw/decent-websrv/internal/mesh"
|
|
|
|
type RegisterReq struct {
|
|
BaseURL string `json:"public_url"`
|
|
MeshURL string `json:"mesh_url"`
|
|
NodeID string `json:"node_id"`
|
|
TTL int `json:"ttl"`
|
|
}
|
|
|
|
type PeersResp struct {
|
|
Peers []mesh.NodeInfo `json:"peers"`
|
|
}
|