Initial Commit
This commit is contained in:
commit
4dbdc7d793
18 changed files with 2384 additions and 0 deletions
15
pyqt6_scaffold/contrib/__init__.py
Normal file
15
pyqt6_scaffold/contrib/__init__.py
Normal 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"
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue