feat(user): adds registration logic and validation

This commit is contained in:
2024-11-16 23:26:35 -03:00
parent 7541548acf
commit be03c55e89
4 changed files with 112 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
class UserRegisterErrors(Exception):
def __init__(self, message):
self.message = message
super().__init__(self.message)