16 lines
331 B
Python
16 lines
331 B
Python
|
|
"""
|
||
|
|
Presenters for CLI output formatting.
|
||
|
|
|
||
|
|
Presenters handle all output formatting and user feedback without
|
||
|
|
containing business logic.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .formatters import OutputFormatter
|
||
|
|
from .views import WorkspaceView, IssueView, ProjectView
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'OutputFormatter',
|
||
|
|
'WorkspaceView',
|
||
|
|
'IssueView',
|
||
|
|
'ProjectView'
|
||
|
|
]
|