diff options
author | xengineering <me@xengineering.eu> | 2023-04-13 18:52:12 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-13 18:52:12 +0200 |
commit | 08375ab50b3bf0231b432d855eca014842985c60 (patch) | |
tree | 801e6d02b34e7b4e30dce712c2174d477e02b210 /config.go | |
parent | 3f40bc37a1095259a42825bac08f939bc15e8a13 (diff) | |
download | ceres-08375ab50b3bf0231b432d855eca014842985c60.tar ceres-08375ab50b3bf0231b432d855eca014842985c60.tar.zst ceres-08375ab50b3bf0231b432d855eca014842985c60.zip |
Apply go fmt
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,12 +10,12 @@ import ( ) type RuntimeConfig struct { - Path string + Path string Host string `json:"bind_host"` Port string `json:"bind_port"` Static string `json:"static"` Templates string `json:"templates"` - Data string `json:"data"` + Data string `json:"data"` } func GetRuntimeConfig() RuntimeConfig { |