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.
|
package main
|
|
|
|
import (
|
|
"caj-larsson/bog/server"
|
|
"io/ioutil"
|
|
)
|
|
|
|
func main() {
|
|
content, err := ioutil.ReadFile("default.toml")
|
|
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
config, err := server.ConfigFromToml(string(content))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
bog := server.New(config)
|
|
bog.Run()
|
|
}
|