social-scheduler/run.py

6 lines
107 B
Python

from sys import argv
from social_scheduler.main import main
if __name__ == '__main__':
main(argv[1:])