summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config.yaml3
-rw-r--r--config/config.go4
2 files changed, 7 insertions, 0 deletions
diff --git a/config.yaml b/config.yaml
index 2381bf0..f684779 100644
--- a/config.yaml
+++ b/config.yaml
@@ -10,3 +10,6 @@ template:
meta:
title: git good
description: i think it's a skill issue
+server:
+ host: 127.0.0.1
+ port: 5555
diff --git a/config/config.go b/config/config.go
index 65d1a71..1a29e4f 100644
--- a/config/config.go
+++ b/config/config.go
@@ -19,6 +19,10 @@ type Config struct {
Title string `yaml:"title"`
Description string `yaml:"description"`
} `yaml:"meta"`
+ Server struct {
+ Host string `yaml:"host"`
+ Port int `yaml:"port"`
+ } `yaml:"server"`
}
func Read(f string) (*Config, error) {