git ssb

2+

Zach! / onboarding-link-generator



Tree: 9459e0f262f5a054661948de3084a458ff547537

Files: 9459e0f262f5a054661948de3084a458ff547537 / onboarding-tool.py

463 bytesRaw
1
2import os
3import shutil
4
5from steps import *
6
7details = {}
8
9def 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
18def main():
19 grab_the_details()
20 template.main(details)
21 success.main(details)
22
23if __name__ == "__main__":
24 main()
25

Built with git-ssb-web