autotako

Service to monitor moombox for completed livestream downloads to upload for distribution
git clone https://code.alwayswait.ing/autotako.git
Log | Files | Refs

.justfile (134B)


      1 test:
      2   ruff check src tests
      3   mypy -p src
      4   pytest tests
      5 
      6 format:
      7   ruff check src tests --select I001 --fix
      8   ruff format src tests