package appsystem import "bamort/registry" // init self-registers the appsystem module with the central registry. // main.go blank-imports this package to trigger this function. func init() { // Protected API routes (/api/version, /api/systeminfo). registry.RegisterRoutes(RegisterRoutes) // Public routes (/api/public/version, /api/public/systeminfo). registry.RegisterPublicRoutes(RegisterPublicRoutes) }