13 lines
545 B
Go
13 lines
545 B
Go
// Package routes organizes HTTP route handlers for the Dragon Knight application.
|
|
// Routes are organized by feature area in separate packages to maintain clean
|
|
// separation of concerns and make the codebase more maintainable.
|
|
//
|
|
// # Structure
|
|
//
|
|
// - auth/ - Authentication routes (login, register, logout)
|
|
// - api/ - API endpoints
|
|
// - web/ - Web interface routes
|
|
//
|
|
// Each route package should provide a Setup function that registers its routes
|
|
// with the router and returns any necessary dependencies or configuration.
|
|
package routes |