Skip to content
Snippets Groups Projects
worker.py 309 B
Newer Older
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()