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