git ssb

2+

Zach! / onboarding-link-generator



Tree: 51f6bd1425a6a3044cc2ba92ae4a2f1f9e1dd980

Files: 51f6bd1425a6a3044cc2ba92ae4a2f1f9e1dd980 / onboarding-tool.py

568 bytesRaw
1
2import os
3import shutil
4
5from steps import *
6
7details = {}
8imported_details = {}
9
10def grab_the_details():
11 """Run through user input getting specific details to fill into the invite webpage."""
12 import_contact_info.main(imported_details)
13 recipient.main(details)
14 pub.main(details)
15 invite_code.main(details)
16 username.main(details, imported_details)
17 channels.main(details)
18 sender.main(details, imported_details)
19
20def main():
21 grab_the_details()
22 template.main(details)
23 success.main(details)
24
25if __name__ == "__main__":
26 main()
27

Built with git-ssb-web