13 lines
250 B
Go
13 lines
250 B
Go
package server
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/dhao2001/mygo/internal/app"
|
|
)
|
|
|
|
func setupProtectedRoutes(rg *gin.RouterGroup, _ *app.WebApp) {
|
|
_ = rg
|
|
// Protected routes will be registered after auth middleware is implemented.
|
|
}
|