whitespace

This commit is contained in:
schulze 2023-03-22 10:39:22 +01:00
parent fc20774a0e
commit 81c611383b

View File

@ -17,6 +17,7 @@ type Config struct {
type mtdconf struct { type mtdconf struct {
Services []service `yaml:"services"` Services []service `yaml:"services"`
} }
type service struct { type service struct {
ID customUUID `yaml:"id"` ID customUUID `yaml:"id"`
ServiceID string `yaml:"cloud_id"` ServiceID string `yaml:"cloud_id"`
@ -25,7 +26,9 @@ type service struct {
ServiceIP netip.Addr `yaml:"service_ip"` ServiceIP netip.Addr `yaml:"service_ip"`
ServicePort uint16 `yaml:"service_port"` ServicePort uint16 `yaml:"service_port"`
} }
type customUUID uuid.UUID type customUUID uuid.UUID
type aws struct { type aws struct {
Regions []string `yaml:"regions"` Regions []string `yaml:"regions"`
CredentialsPath string `yaml:"credentials_path"` CredentialsPath string `yaml:"credentials_path"`