mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-06-11 09:44:58 +02:00
13 lines
217 B
Python
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())
|