11 lines
170 B
Python
Executable file
11 lines
170 B
Python
Executable file
"""Main run file for J.A.R.V.I.S."""
|
|
import asyncio
|
|
|
|
import nest_asyncio
|
|
|
|
from jarvis import run
|
|
|
|
nest_asyncio.apply()
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(run())
|