summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/config.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go
index 4b89dc1..b9bcbbd 100644
--- a/config/config.go
+++ b/config/config.go
@@ -21,7 +21,13 @@ type Config struct {
Title string `yaml:"title"`
Description string `yaml:"description"`
} `yaml:"meta"`
+ Misc struct {
+ GoImport struct {
+ PrettyURL string `yaml:"string"`
+ } `yaml:"goImport"`
+ } `yaml:"misc"`
Server struct {
+ FQDN string `yaml:"fqdn,omitempty"`
Host string `yaml:"host"`
Port int `yaml:"port"`
} `yaml:"server"`