mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-03-04 23:27:46 +01: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())
|