CostHive/app/receipts/__init__.py
Lunaresk 764738b20d major: upload and storage of recipes
PDF-Recipes are uploadable and some basic functions are already
implemented.
Also minor bugfixes.
2022-11-14 21:03:00 +01:00

5 lines
105 B
Python

from flask import Blueprint
bp = Blueprint('receipts', __name__)
from app.receipts import forms, routes