summaryrefslogtreecommitdiff
path: root/app/config.go
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-03-22 18:01:27 +1000
committerJames Mills <prologic@shortcircuit.net.au>2020-03-22 18:01:27 +1000
commita90739089110e9f92653792bb1f23888ad734a79 (patch)
treecf7b364140e560d4e062607e1ec71567cf843360 /app/config.go
parentce3008222e924902352d697b45626aebd8980af1 (diff)
Add support for transcoding
Diffstat (limited to 'app/config.go')
-rw-r--r--app/config.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/config.go b/app/config.go
index c2ecb45..ccf3542 100644
--- a/app/config.go
+++ b/app/config.go
@@ -20,8 +20,9 @@ type PathConfig struct {
// ServerConfig settings for App Server.
type ServerConfig struct {
- Host string `json:"host"`
- Port int `json:"port"`
+ Host string `json:"host"`
+ Port int `json:"port"`
+ UploadPath string `json:"upload_path"`
}
// FeedConfig settings for App Feed.