shegga's picture
๐Ÿ—‘๏ธ Remove API Endpoints page to simplify the application
9522fcb
raw
history blame contribute delete
327 Bytes
"""
Pages module for Vietnamese Sentiment Analysis
"""
from .single_analysis import create_single_analysis_page
from .batch_analysis import create_batch_analysis_page
from .model_info import create_model_info_page
__all__ = [
'create_single_analysis_page',
'create_batch_analysis_page',
'create_model_info_page'
]