6 lines
125 B
Python
6 lines
125 B
Python
from flask import Blueprint
|
|
|
|
blueprint = Blueprint('apply', __name__, url_prefix='/apply')
|
|
|
|
from app.applicant import routes
|