10 lines
249 B
Go
10 lines
249 B
Go
package web
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"git.coopgo.io/coopgo-apps/parcoursmob/core/application"
|
|
)
|
|
|
|
func setupMiscRoutes(appRouter *mux.Router, applicationHandler *application.ApplicationHandler) {
|
|
// Future misc routes can be added here
|
|
} |