16 lines
348 B
Go
16 lines
348 B
Go
package database
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func RegisterRoutes(r *gin.RouterGroup) {
|
|
route := r.Group("/database")
|
|
route.GET("/setupcheck", SetupCheck)
|
|
}
|
|
|
|
// RegisterPublicRoutes registers public config routes (no auth required)
|
|
func RegisterPublicRoutes(r *gin.Engine) {
|
|
// Public version endpoint - no authentication required
|
|
}
|