tildewatch/types.go
2024-06-26 22:10:29 -04:00

12 lines
206 B
Go

package main
type Config struct {
Users []UserRegistration `yaml:"users"`
Hosts []HostRegistration `yaml:"hosts"`
}
type Request struct {
IPAddr string `json:"ipaddr"`
Secret string `json:"secret"`
}