12 lines
176 B
Python
Executable file
12 lines
176 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
from .tasks import ALL_TASKS
|
|
|
|
|
|
def main():
|
|
for task in ALL_TASKS:
|
|
print("Executing", task.__name__)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|