primera iteracion del front

This commit is contained in:
2026-03-14 14:53:03 -03:00
parent 389f858369
commit 0905005543
19 changed files with 749 additions and 0 deletions

View File

@@ -27,6 +27,10 @@ func main() {
routes.Url(w, r, db)
})
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request){
routes.Root(w,r);
})
port := ":8080"
if envPort := os.Getenv("PORT"); envPort != "" {
port = ":" + envPort