forked from hnu202311020126/iSmartAuto
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
231 B
15 lines
231 B
3 years ago
|
import asyncio
|
||
|
from automaton import finish
|
||
|
|
||
|
|
||
|
async def main():
|
||
|
await finish()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
loop = asyncio.new_event_loop()
|
||
|
try:
|
||
|
loop.run_until_complete(main())
|
||
|
finally:
|
||
|
loop.close()
|