__init__.py 369 B

12345678
  1. from invoke import Collection # pylint: disable=3rd-party-module-not-gated
  2. from . import docs, filemap, loader
  3. ns = Collection()
  4. ns.add_collection(Collection.from_module(docs, name="docs"), name="docs")
  5. ns.add_collection(Collection.from_module(loader, name="loader"), name="loader")
  6. ns.add_collection(Collection.from_module(filemap, name="filemap"), name="filemap")