Files
Sillyv2/core/config.go
T
2021-09-26 16:07:17 +08:00

15 lines
162 B
Go

package core
import (
"os"
"path/filepath"
)
type Yaml struct {
Replies []Reply
}
var ExecPath, _ = filepath.Abs(filepath.Dir(os.Args[0]))
var Config Yaml