13 lines
No EOL
189 B
Python
Executable file
13 lines
No EOL
189 B
Python
Executable file
"""
|
|
API endpoints for Brief Extractor GUI
|
|
"""
|
|
|
|
from .jobs import jobs_bp
|
|
from .config import config_bp
|
|
from .auth import auth_bp
|
|
|
|
__all__ = [
|
|
'jobs_bp',
|
|
'config_bp',
|
|
'auth_bp'
|
|
] |