added variable templating, template parts

This commit is contained in:
2025-10-12 14:35:15 +00:00
parent 68c9aad3a1
commit 1a1ef9b55f
10 changed files with 59 additions and 8 deletions

View File

@ -12,7 +12,7 @@ func Server() {
http.HandleFunc("/", main_page)
http.HandleFunc("/mgr/add", manager.Add_api)
http.HandleFunc("/mgr/show", manager.Show_apis)
http.HandleFunc("/mgr/show", manager.Render_apis)
http.HandleFunc("/api/", api.Get_api)
http.ListenAndServe(":8090", nil)