Files
meshview/main.py
2025-03-08 15:34:30 -08:00

13 lines
217 B
Python

import asyncio
from meshview import web
async def main():
async with asyncio.TaskGroup() as tg:
tg.create_task(
web.run_server()
)
if __name__ == '__main__':
asyncio.run(main())