Initial Commit

This commit is contained in:
Daniel Haus 2026-03-06 16:05:24 +03:00
commit 4dbdc7d793
18 changed files with 2384 additions and 0 deletions

View file

@ -0,0 +1,15 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from .backends import (
MysqlDatabase,
SqliteDatabase,
PostgresqlDatabase,
)
from . import auth
__all__ = [
"auth",
"MysqlDatabase",
"SqliteDatabase",
"PostgresqlDatabase"
]