Files
speakeasy/app.go
2026-01-05 16:57:42 -05:00

11 lines
184 B
Go

package main
import server_config "speakeasy/config/server"
func main() {
sc := server_config.CreateNewConfig()
sc.LoadConfig()
println(sc.SERVER_HOST)
println(sc.SERVER_PORT)
}