Removed the ability for duplicate accounts being able to be made

This commit is contained in:
2024-01-05 14:11:46 +00:00
parent c6ef411930
commit 08479c1134
2 changed files with 11 additions and 0 deletions

View File

@ -23,6 +23,10 @@ class DatabaseController(ABC):
setattr(obj, attr, value)
return obj
"""
Set of CRUD methods to allow for Data manipulation on the backend
"""
@abstractmethod
def create(self):
pass