aboutsummaryrefslogtreecommitdiff
path: root/config/config.go
diff options
context:
space:
mode:
authorAnirudh Oppiliappan <x@icyphox.sh>2022-12-12 22:58:23 +0530
committerAnirudh Oppiliappan <x@icyphox.sh>2022-12-12 22:58:23 +0530
commit462c7ddc70f7c4da9515298439246f3b40b244f5 (patch)
treecbb11e717a3f3ffb63fb7e802429adbbba596510 /config/config.go
parenttemplates: tree and log links for tags (diff)
downloadlegitrx-462c7ddc70f7c4da9515298439246f3b40b244f5.tar.gz
legitrx-462c7ddc70f7c4da9515298439246f3b40b244f5.tar.zst
legitrx-462c7ddc70f7c4da9515298439246f3b40b244f5.zip
config: server host and port
Diffstat (limited to '')
-rw-r--r--config/config.go4
1 files changed, 4 insertions, 0 deletions
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) {