mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
12 lines
No EOL
225 B
Python
Executable file
12 lines
No EOL
225 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from . import tlnb
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
role = "task"
|
|
if len(sys.argv) > 1:
|
|
role = sys.argv[1]
|
|
# tlnb.main(role=role, role2="ec2task")
|
|
tlnb.main(role=role)
|
|
|