aiteamutils 0.2.82__py3-none-any.whl → 0.2.83__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
aiteamutils/enums.py
CHANGED
@@ -4,7 +4,7 @@ from enum import Enum
|
|
4
4
|
def hyphen_to_camel_case(text: str) -> str:
|
5
5
|
"""하이픈을 카멜케이스로 변환하는 함수"""
|
6
6
|
words = text.split('-')
|
7
|
-
return words[0].
|
7
|
+
return words[0].capitalize() + ''.join(word.capitalize() for word in words[1:])
|
8
8
|
|
9
9
|
class UserStatus(str, Enum):
|
10
10
|
"""사용자 상태."""
|
aiteamutils/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
"""버전 정보"""
|
2
|
-
__version__ = "0.2.
|
2
|
+
__version__ = "0.2.83"
|
@@ -5,11 +5,11 @@ aiteamutils/base_service.py,sha256=7DXjEn3e_dve_ZfNwUP1_WD7QnucWRXBq-bYuxVmyXI,8
|
|
5
5
|
aiteamutils/cache.py,sha256=07xBGlgAwOTAdY5mnMOQJ5EBxVwe8glVD7DkGEkxCtw,1373
|
6
6
|
aiteamutils/config.py,sha256=YdalpJb70-txhGJAS4aaKglEZAFVWgfzw5BXSWpkUz4,3232
|
7
7
|
aiteamutils/database.py,sha256=b4fN0XHNWxMJeS5M95JcJ7tujAJ1x3SPTAfDvJdB4sE,19696
|
8
|
-
aiteamutils/enums.py,sha256=
|
8
|
+
aiteamutils/enums.py,sha256=9VHv8fuhSVgnWSrjwQfDgvSftm1waZ0XB0jv9dVkTZk,851
|
9
9
|
aiteamutils/exceptions.py,sha256=5yREcEUbJPzq2404pFJ4J9047I9_qx2QG5iBND1PjDI,15901
|
10
10
|
aiteamutils/security.py,sha256=tS7gdkCvL0hfgC_FWDSWaCVrzy3zUFpw-PyiFn9yXMM,10839
|
11
11
|
aiteamutils/validators.py,sha256=PvI9hbMEAqTawgxPbiWRyx2r9yTUrpNBQs1AD3w4F2U,7726
|
12
|
-
aiteamutils/version.py,sha256=
|
13
|
-
aiteamutils-0.2.
|
14
|
-
aiteamutils-0.2.
|
15
|
-
aiteamutils-0.2.
|
12
|
+
aiteamutils/version.py,sha256=32-ujnehsv-sSn6QFF_ArD1pQ0M0nEKqFgJO7wDbQI4,42
|
13
|
+
aiteamutils-0.2.83.dist-info/METADATA,sha256=gkFwS2bqr0KzCeQOa3hmT7klD1WrLcJcKo7RrJnXRRo,1718
|
14
|
+
aiteamutils-0.2.83.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
15
|
+
aiteamutils-0.2.83.dist-info/RECORD,,
|
File without changes
|