salt/tasks/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
479 B
Python
Raw Normal View History

2020-04-23 11:48:17 +01:00
from invoke import Collection # pylint: disable=3rd-party-module-not-gated
from . import docs, docstrings, filemap, loader
2020-04-23 11:48:17 +01:00
ns = Collection()
ns.add_collection(Collection.from_module(docs, name="docs"), name="docs")
ns.add_collection(
Collection.from_module(docstrings, name="docstrings"), name="docstrings"
)
ns.add_collection(Collection.from_module(loader, name="loader"), name="loader")
ns.add_collection(Collection.from_module(filemap, name="filemap"), name="filemap")