Skip to content

Commit

Permalink
add company routes
Browse files Browse the repository at this point in the history
  • Loading branch information
aidantrabs committed Dec 30, 2024
1 parent 52f0d7a commit 6e6babf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions backend/internal/v1/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ package v1
import (
"KonferCA/SPUR/internal/interfaces"
"KonferCA/SPUR/internal/v1/v1_auth"
"KonferCA/SPUR/internal/v1/v1_companies"
"KonferCA/SPUR/internal/v1/v1_health"
)

func SetupRoutes(s interfaces.CoreServer) {
e := s.GetEcho()
g := e.Group("/api/v1")

v1_health.SetupHealthcheckRoutes(g, s)
v1_auth.SetupAuthRoutes(g, s)
v1_companies.SetupCompanyRoutes(g, s)
}

0 comments on commit 6e6babf

Please sign in to comment.