feat(pets): adds bp, service and filters template and logic

This commit is contained in:
2024-12-04 00:01:40 -03:00
parent e8c79ed04d
commit 0e25bf660c
6 changed files with 230 additions and 0 deletions

View File

@@ -31,5 +31,7 @@ def create_app(config_class=Config):
app.register_blueprint(main_bp)
from app.users import bp as users_bp
app.register_blueprint(users_bp, url_prefix="/users")
from app.pets import bp as pets_bp
app.register_blueprint(pets_bp, url_prefix="/pets")
return app