first commit. working templating, path routing, api responses, web menagment path

This commit is contained in:
2025-10-12 07:05:03 +00:00
commit ebc79583e4
12 changed files with 203 additions and 0 deletions

13
main.go Normal file
View File

@ -0,0 +1,13 @@
package main
// main package of the programm
// launching the main web package
// for future: loging
import (
"api_manager/web"
)
func main() {
web.Server()
}