8 lines
142 B
Go
8 lines
142 B
Go
|
package configuration
|
||
|
|
||
|
// The data container for the configuration.
|
||
|
type Container struct {
|
||
|
BindHostAndPort string
|
||
|
RootDirectory string
|
||
|
}
|