#ifndef __CHARACTERSBLUEPRINT_H__ #define __CHARACTERSBLUEPRINT_H__ #include "crow.h" #include "crow/middlewares/session.h" namespace CharactersBlueprint { using Session = crow::SessionMiddleware; using DashboardApp = crow::App; /** * Setup character management routes * Registers routes for viewing, editing, and managing characters */ void Setup(DashboardApp& app); } // namespace CharactersBlueprint #endif // __CHARACTERSBLUEPRINT_H__