3 lines
82 B
Python
3 lines
82 B
Python
|
from flask import Blueprint
|
||
|
faqs = Blueprint('faqs', __name__)
|
||
|
from . import views
|