13 lines
182 B
Go
13 lines
182 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/pelletier/go-toml"
|
|
)
|
|
|
|
func main() {
|
|
config, _ := toml.LoadFile("serverwrapper.toml")
|
|
str, _ := config.ToTomlString()
|
|
fmt.Println(str)
|
|
}
|