2023-10-05 18:48:54 +02:00
|
|
|
package crdt
|
|
|
|
|
2023-10-25 19:34:38 +02:00
|
|
|
// MeshNodeCrdt: Represents a CRDT for a mesh nodes
|
2023-10-05 18:48:54 +02:00
|
|
|
type MeshNodeCrdt struct {
|
2023-10-25 19:34:38 +02:00
|
|
|
HostEndpoint string `automerge:"hostEndpoint"`
|
|
|
|
WgEndpoint string `automerge:"wgEndpoint"`
|
|
|
|
PublicKey string `automerge:"publicKey"`
|
|
|
|
WgHost string `automerge:"wgHost"`
|
|
|
|
Timestamp int64 `automerge:"timestamp"`
|
|
|
|
Routes map[string]interface{} `automerge:"routes"`
|
2023-11-17 20:05:21 +01:00
|
|
|
Alias string `automerge:"alias"`
|
2023-11-01 12:58:10 +01:00
|
|
|
Description string `automerge:"description"`
|
2023-11-17 23:13:51 +01:00
|
|
|
Services map[string]string `automerge:"services"`
|
2023-10-05 18:48:54 +02:00
|
|
|
}
|
|
|
|
|
2023-10-25 19:34:38 +02:00
|
|
|
// MeshCrdt: Represents the mesh network as a whole
|
2023-10-05 18:48:54 +02:00
|
|
|
type MeshCrdt struct {
|
|
|
|
Nodes map[string]MeshNodeCrdt `automerge:"nodes"`
|
|
|
|
}
|