git ssb

2+

Zach! / onboarding-link-generator



Tree: ab68e4cb17bd0f1bda42fed9ccd8674bbfd4e406

Files: ab68e4cb17bd0f1bda42fed9ccd8674bbfd4e406 / steps / invite_code.py

1549 bytesRaw
1from steps import clear_screen
2
3def main(details):
4 ascii_art = """
5
6██╗███╗ ██╗██╗ ██╗██╗████████╗███████╗ ██████╗ ██████╗ ██████╗ ███████╗
7██║████╗ ██║██║ ██║██║╚══██╔══╝██╔════╝ ██╔════╝██╔═══██╗██╔══██╗██╔════╝
8██║██╔██╗ ██║██║ ██║██║ ██║ █████╗ ██║ ██║ ██║██║ ██║█████╗
9██║██║╚██╗██║╚██╗ ██╔╝██║ ██║ ██╔══╝ ██║ ██║ ██║██║ ██║██╔══╝
10██║██║ ╚████║ ╚████╔╝ ██║ ██║ ███████╗ ╚██████╗╚██████╔╝██████╔╝███████╗
11╚═╝╚═╝ ╚═══╝ ╚═══╝ ╚═╝ ╚═╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝
12 """
13
14 clear_screen.main()
15 print(ascii_art)
16 details['invite-code'] = input("What's their Invite Code?\n> ")
17
18if __name__ == "__main__":
19 main(details)
20

Built with git-ssb-web