Initial YakPanel commit

This commit is contained in:
Niranjan
2026-04-07 02:04:22 +05:30
commit 2826d3e7f3
5359 changed files with 1390724 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# coding: utf-8
from .config_manager import *
from .fields import *
from .manager import Q
from .model import aaModel
__version__ = "1.2.0"
__all__ = [
"__version__",
"aaModel",
"Q",
] + fields.__all__ + config_manager.__all__