publish-meetups/publish_meetups/__main__.py

10 lines
122 B
Python
Raw Normal View History

2024-02-13 20:25:47 +00:00
from .routines.development import Development
2024-02-08 22:12:22 +00:00
def cli():
2024-02-13 20:25:47 +00:00
Development().run()
2024-02-11 19:48:45 +00:00
if __name__ == "__main__":
cli()