diff options
| author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-08-24 13:03:50 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-08-24 13:03:56 -0700 |
| commit | 5dc264e08253c3a97ea41d1fde5fbf3f33dd6591 (patch) | |
| tree | 0db325e5e280176702263d28817c371abce050db /kennel/app.py | |
| parent | 6f374aac7f4d553c484eecc77c9599be79f2d834 (diff) | |
| download | kennel.hatecomputers.club-5dc264e08253c3a97ea41d1fde5fbf3f33dd6591.tar.gz kennel.hatecomputers.club-5dc264e08253c3a97ea41d1fde5fbf3f33dd6591.zip | |
bring in jQuery, build with Vite
Diffstat (limited to 'kennel/app.py')
| -rw-r--r-- | kennel/app.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/kennel/app.py b/kennel/app.py index 98a0448..429aa1a 100644 --- a/kennel/app.py +++ b/kennel/app.py @@ -1,13 +1,8 @@ import structlog from fastapi import FastAPI -from fastapi.templating import Jinja2Templates app = FastAPI( - servers = [ - {"url": "https://kennel.hatecomputers.club", "description": "prod"} - ] + servers=[{"url": "https://kennel.hatecomputers.club", "description": "prod"}] ) logger = structlog.get_logger() - -templates = Jinja2Templates(directory="templates") |
