salt/tasks/__init__.py
2020-05-19 10:18:24 -07:00

10 lines
394 B
Python

# -*- coding: utf-8 -*-
from invoke import Collection # pylint: disable=3rd-party-module-not-gated
from . import docs, filemap, loader
ns = Collection()
ns.add_collection(Collection.from_module(docs, name="docs"), name="docs")
ns.add_collection(Collection.from_module(loader, name="loader"), name="loader")
ns.add_collection(Collection.from_module(filemap, name="filemap"), name="filemap")