added error handling, map transformation functions for conviniese

This commit is contained in:
2025-10-12 13:59:51 +00:00
parent c955bde580
commit 68c9aad3a1
6 changed files with 90 additions and 21 deletions

View File

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