initial commit
This commit is contained in:
12
serverwrapper.go
Normal file
12
serverwrapper.go
Normal file
@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/pelletier/go-toml"
|
||||
)
|
||||
|
||||
func main() {
|
||||
config, _ := toml.LoadFile("serverwrapper.toml")
|
||||
str, _ := config.ToTomlString()
|
||||
fmt.Println(str)
|
||||
}
|
||||
Reference in New Issue
Block a user