Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
from logic.welcome import Welcome
from logic.help import Help
from database.mongo import Mongo
import time
def main():
newWelcome = Welcome()
# Welcome the user and get their private information
proceed = newWelcome.welcomeUser()
# check if we've completed the task for
# welcoming the user then proceed to the next task
if not proceed:
print("We're sorry but we're going to have to terminate this process becuase we couldn't onboard you. \n")
print("Please try again. \n")
time.sleep(2)
exit()
newHelp = Help()
newHelp.howItWorks()
newHelp.callFunc(proceed)
if __name__ == "__main__":
main()