9 lines
201 B
Python

from src.controller import controller
"""CRMデータ取得処理のエントリーポイント"""
if __name__ == '__main__':
try:
exit(controller())
except Exception:
exit(0)