status/proto/structs.go

16 lines
173 B
Go
Raw Normal View History

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