__init__.py 394 B

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