initial commit

This commit is contained in:
Krumel
2021-06-01 17:39:28 +02:00
commit 91a99e34c5
4 changed files with 63 additions and 0 deletions

12
serverwrapper.go Normal file
View 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)
}