status/proto/structs.go
2023-09-30 12:15:19 -04:00

15 lines
171 B
Go

package proto
import "net/url"
type Service struct {
Name string
Type string
Url url.URL
}
type ServiceStatus struct {
Name string
Ok bool
Status string
}