26 lines
418 B
Python
26 lines
418 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():
|
|
print("Logging in as Admin")
|
|
|
|
def signup():
|
|
print("Signing up as Admin")
|
|
|
|
def createProduct():
|
|
pass
|
|
|
|
def deleteProduct():
|
|
pass
|
|
|
|
def updateProduct():
|
|
pass
|
|
|