From a55695865e6576a59aa5eaabde4babf330863d27 Mon Sep 17 00:00:00 2001 From: Stefano Date: Mon, 5 May 2025 23:36:04 -0500 Subject: [PATCH] Remove aiosqlite import --- README.md | 2 +- src/routers/admin.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index d5cea2c..e32384a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # FastAPI IPTV Service -This project is a FastAPI application to manage IPTV services, including user registration and authentication. It uses `aiosqlite` for a lightweight database, `passlib` for password hashing, and `uvicorn` as the ASGI server. It's designed with containerization in mind using Docker and manages dependencies with `uv`. +This project is a FastAPI application to manage IPTV services, including user registration and authentication. It uses `redis` for a lightweight database, `passlib` for password hashing, and `uvicorn` as the ASGI server. It's designed with containerization in mind using Docker and manages dependencies with `uv`. ## Features diff --git a/src/routers/admin.py b/src/routers/admin.py index 52b6a72..4d91cf4 100644 --- a/src/routers/admin.py +++ b/src/routers/admin.py @@ -1,4 +1,3 @@ -import aiosqlite from fastapi import APIRouter, Depends, HTTPException from passlib.context import CryptContext from src.utils.auth import verify_superadmin, get_user