Files
meshview/main.py
Joel Krauska e25ff22127 Add Ruff formatting and pre-commit hooks
Configure Ruff as the code formatter and linter with pre-commit hooks.
  Applied automatic formatting fixes across the entire codebase including:
  - Import sorting and organization
  - Code style consistency (spacing, line breaks, indentation)
  - String quote normalization
  - Removal of trailing whitespace and unnecessary blank lines
2025-10-03 20:38:37 -07:00

13 lines
197 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())