aiteamutils 0.2.60__tar.gz → 0.2.61__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/PKG-INFO +1 -1
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/__init__.py +0 -4
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/validators.py +0 -1
- aiteamutils-0.2.61/aiteamutils/version.py +2 -0
- aiteamutils-0.2.60/aiteamutils/version.py +0 -2
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/.cursorrules +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/.gitignore +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/README.md +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/base_model.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/base_repository.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/base_service.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/cache.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/config.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/database.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/enums.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/exceptions.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/aiteamutils/security.py +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/pyproject.toml +0 -0
- {aiteamutils-0.2.60 → aiteamutils-0.2.61}/setup.py +0 -0
@@ -1,5 +1,4 @@
|
|
1
1
|
from .base_model import Base
|
2
|
-
from .database import DatabaseService
|
3
2
|
from .exceptions import (
|
4
3
|
CustomException,
|
5
4
|
ErrorCode,
|
@@ -28,9 +27,6 @@ __all__ = [
|
|
28
27
|
"BaseService",
|
29
28
|
"BaseRepository",
|
30
29
|
|
31
|
-
# Database
|
32
|
-
"DatabaseService",
|
33
|
-
|
34
30
|
# Exceptions
|
35
31
|
"CustomException",
|
36
32
|
"ErrorCode",
|
@@ -10,7 +10,6 @@ from pydantic import BaseModel, field_validator
|
|
10
10
|
import re
|
11
11
|
|
12
12
|
from .exceptions import ErrorCode, CustomException
|
13
|
-
from .database import DatabaseService
|
14
13
|
from .base_model import Base
|
15
14
|
|
16
15
|
def validate_with(validator_func, unique_check=None, skip_if_none=False):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|