Files: 89a367fda7adddc793a2ebab82ecd312a098aebe / onboarding-tool.py
463 bytesRaw
1 | |
2 | import os |
3 | import shutil |
4 | |
5 | from steps import * |
6 | |
7 | details = {} |
8 | |
9 | def grab_the_details(): |
10 | """Run through user input getting specific details to fill into the invite webpage.""" |
11 | recipient.main(details) |
12 | pub.main(details) |
13 | invite_code.main(details) |
14 | username.main(details) |
15 | channels.main(details) |
16 | sender.main(details) |
17 | |
18 | def main(): |
19 | grab_the_details() |
20 | template.main(details) |
21 | success.main(details) |
22 | |
23 | if __name__ == "__main__": |
24 | main() |
25 |
Built with git-ssb-web