You can now upload receipts and check which ones should be accounted. Currently without function, needs to be implemented.
5 lines
124 B
Python
5 lines
124 B
Python
from flask import Blueprint
|
|
|
|
bp = Blueprint('check_items', __name__, url_prefix='/check_items')
|
|
|
|
from . import forms, routes |