9 lines
126 B
Python
Executable File
9 lines
126 B
Python
Executable File
import asyncio
|
|
|
|
from app.services.scheduler import scheduler
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(scheduler.start())
|
|
|