Created base database controller and user database controller to allow for initial database control

This commit is contained in:
2024-01-01 20:19:57 +00:00
parent ef94773b8f
commit b1a22cb7bd
13 changed files with 84 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
from user import User
from .user import User
class Seller(User):
'''
@@ -8,10 +8,10 @@ class Seller(User):
super().__init__()
self.store = ""
def login():
def login(self):
print("Logging in as Seller")
def signup():
def signup(self):
print("Signing up as Seller")
def createProduct():