mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
9 lines
302 B
Python
9 lines
302 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from invoke import Collection # pylint: disable=3rd-party-module-not-gated
|
|
|
|
from . import docs, 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")
|