Remove aiosqlite import

This commit is contained in:
2025-05-05 23:36:04 -05:00
parent 0856144417
commit a55695865e
2 changed files with 1 additions and 2 deletions

View File

@@ -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

View File

@@ -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