Projet de remplacement du "RPiPasserelle" d'Otec.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. #!/usr/bin/env python3
  2. from starlette.routing import Router
  3. from starlette.mounting import Mount
  4. app = Router(routes=[
  5. Route('/', index),
  6. Mount('/heatpump', heatpump),
  7. Mount('/config', config),
  8. ])