status/proto/structs.go
2023-09-30 16:56:37 +00:00

15 lines
173 B
Go

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