diff options
author | Tulir Asokan <tulir@maunium.net> | 2018-04-10 19:31:28 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2018-04-10 19:31:28 +0300 |
commit | 8270bc0322ac262f4b48c92d5fad25cf9634f1bb (patch) | |
tree | 8ff85b17f4d2948b8d3bae40738d97ad25f43488 /config | |
parent | ee67c1446cbb3c446d59d4ebd9657a25bf0b702d (diff) |
Move event parsing to ui/messages and add image displaying
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 9179a58..85160c6 100644 --- a/config/config.go +++ b/config/config.go @@ -33,6 +33,7 @@ type Config struct { Dir string `yaml:"-"` HistoryDir string `yaml:"history_dir"` + MediaDir string `yaml:"media_dir"` Session *Session `yaml:"-"` } @@ -41,6 +42,7 @@ func NewConfig(dir string) *Config { return &Config{ Dir: dir, HistoryDir: filepath.Join(dir, "history"), + MediaDir: filepath.Join(dir, "media"), } } |