8 lines
131 B
Go
8 lines
131 B
Go
|
|
package web
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
Enable bool `toml:"enable"`
|
||
|
|
Bind string `toml:"bind"`
|
||
|
|
Webroot string `toml:"webroot"`
|
||
|
|
}
|