7 lines
99 B
Python
7 lines
99 B
Python
from sanic import Blueprint
|
|
|
|
from .search import bp as search_bp
|
|
|
|
|
|
bp = Blueprint.group(search_bp)
|