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