feat: project setup

This commit is contained in:
darwincereska
2026-01-05 16:56:38 -05:00
parent b6107c7c06
commit 40f8a64a49
38 changed files with 350 additions and 0 deletions

10
app.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import server_config "speakeasy/config/server"
func main() {
sc := server_config.CreateNewConfig()
sc.LoadConfig()
println(sc.SERVER_HOST)
println(sc.SERVER_PORT)
}