status/proto/structs.go

16 lines
171 B
Go
Raw Normal View History

2023-09-30 16:14:50 +00:00
package proto
import "net/url"
type Service struct {
Name string
Type string
Url url.URL
}
type ServiceStatus struct {
Name string
Ok bool
Status string
}