Fixed parseConfig.go to include new Web section

This commit is contained in:
MichaelOultram 2015-08-10 19:05:20 +01:00
parent 068323e9b8
commit a48d10a1cc
2 changed files with 7 additions and 1 deletions

View file

@ -162,7 +162,7 @@ AdminsEnabled = true
# SYNTAX: In order to specify multiple admins, repeat the Admins="username"
# line of code. Each line has one username, and an unlimited amount of usernames may
# be entered in this matter.
Admins = "Matt"
Admins = ""
# Make add an admin command?
# DEFAULT VALUE: false

View file

@ -33,6 +33,12 @@ type DjConfig struct {
LowestVolume float32
HighestVolume float32
}
Web struct {
WebBrowser bool
WebPort int
WebAddress string
CustomWebPage bool
}
Aliases struct {
AddAlias string
SkipAlias string