This commit is contained in:
nic
2025-07-22 18:20:10 +03:00
commit a31b9310a2
12 changed files with 373 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
package models
type PeerManifest struct {
IP string `json:"ip" form:"ip" query:"ip"`
PubKey string `json:"pubkey" form:"pubkey" query:"pubkey" validate:"required"`
}