move structs

This commit is contained in:
dragongoose 2023-09-30 12:14:50 -04:00
parent b765ac8a8c
commit 4ef4647646
No known key found for this signature in database
GPG key ID: 01397EEC371CDAA5

15
proto/structs.go Normal file
View file

@ -0,0 +1,15 @@
package proto
import "net/url"
type Service struct {
Name string
Type string
Url url.URL
}
type ServiceStatus struct {
Name string
Ok bool
Status string
}