You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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
)