add experience

This commit is contained in:
Dilanka-H
2025-11-14 15:10:08 +07:00
parent 58cec3e440
commit 5ffde5265b
7 changed files with 134 additions and 14 deletions

View File

@@ -9,7 +9,8 @@ import (
func SetupRoutes(app *app.Application) *chi.Mux {
r := chi.NewRouter()
r.Get("/", app.ProjectHandler.InitPage)
r.Get("/projects", app.ProjectHandler.ProjectsPage)
r.Get("/", app.ApiHandler.InitPage)
r.Get("/projects", app.ApiHandler.ProjectsPage)
r.Get("/experience", app.ApiHandler.ExperiencePage)
return r
}