16 lines
290 B
Python
16 lines
290 B
Python
def client_Specific_Tabs(option):
|
|
if option == "Westfield":
|
|
Westfield()
|
|
elif option == " CCM":
|
|
CCM()
|
|
else:
|
|
return
|
|
|
|
|
|
def Westfield():
|
|
print("Neat westfield stuff will go here")
|
|
exit()
|
|
|
|
def CCM():
|
|
print("Neat CCM stuff will go here")
|
|
exit() |