This commit is contained in:
2025-11-28 15:56:49 -05:00
parent e2d31aa734
commit 705911ac9d
21 changed files with 791 additions and 480 deletions

14
src/config/config.go Normal file
View File

@@ -0,0 +1,14 @@
package config
import "embed"
var Core embed.FS
var Port *int
type MyConfig struct {
App struct {
Name string `toml:"name"`
Version string `toml:"version"`
Authors []string `toml:"authors"`
} `toml:"app"`
}