From 81c611383b25ec4a968113f967e80f23b29d6029 Mon Sep 17 00:00:00 2001 From: schulze Date: Wed, 22 Mar 2023 10:39:22 +0100 Subject: [PATCH] whitespace --- state/config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/state/config.go b/state/config.go index 174f0db..dae2252 100644 --- a/state/config.go +++ b/state/config.go @@ -17,6 +17,7 @@ type Config struct { type mtdconf struct { Services []service `yaml:"services"` } + type service struct { ID customUUID `yaml:"id"` ServiceID string `yaml:"cloud_id"` @@ -25,7 +26,9 @@ type service struct { ServiceIP netip.Addr `yaml:"service_ip"` ServicePort uint16 `yaml:"service_port"` } + type customUUID uuid.UUID + type aws struct { Regions []string `yaml:"regions"` CredentialsPath string `yaml:"credentials_path"`