from flask import Blueprint

notes_bp = Blueprint('notes', __name__, url_prefix='/catatan', template_folder='templates')

from app.notes import routes
