-
Valentin Rigal authoredValentin Rigal authored
worker.py 309 B
# -*- coding: utf-8 -*-
from arkindex_worker.worker import ElementsWorker
class Demo(ElementsWorker):
def process_element(self, element):
print("Demo processing element", element)
def main():
Demo(description="{{ cookiecutter.description }}").run()
if __name__ == "__main__":
main()