529d28e62e
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
19 lines
334 B
Go
19 lines
334 B
Go
package core
|
|
|
|
var (
|
|
// Root stores the server's root directory
|
|
Root string
|
|
|
|
// Bind stores the server's bound IP
|
|
Bind string
|
|
|
|
// Hostname stores the host's outward hostname
|
|
Hostname string
|
|
|
|
// Port stores the internal port the host is binded to
|
|
Port string
|
|
|
|
// FwdPort stores the host's outward port number
|
|
FwdPort string
|
|
)
|