-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.py
27 lines (22 loc) · 894 Bytes
/
admin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Filename: admin.py
# import into another file by using "from admin import Admin"
#=========================================
#= Class Admin =
#=========================================
from user import User
class Admin(User):
#==========================================================
#= Public Functions =
#==========================================================
def __init__(self) -> None:
super().__init__()
# ------------------------------------------------------------
def deleteAllEvents():
pass
# ------------------------------------------------------------
def deleteAllEvents(object):
pass
# ------------------------------------------------------------
def deleteEvent(object):
pass
# ------------------------------------------------------------