13 lines
191 B
Python
Executable File
13 lines
191 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
CryptoAI 启动脚本
|
|
|
|
"""
|
|
|
|
import sys
|
|
from cryptoai.task_endpoint import task_start
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(task_start()) |