26 lines
427 B
Python
26 lines
427 B
Python
from .user import User
|
|
|
|
class Admin(User):
|
|
'''
|
|
Class constructor to instatiate an Admin object
|
|
'''
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.store = ""
|
|
|
|
def login(self):
|
|
print("Logging in as Admin")
|
|
|
|
def signup(self):
|
|
print("Signing up as Admin")
|
|
|
|
def createProduct():
|
|
pass
|
|
|
|
def deleteProduct():
|
|
pass
|
|
|
|
def updateProduct():
|
|
pass
|
|
|