__init__.py 302 B

123456789
  1. # -*- coding: utf-8 -*-
  2. from invoke import Collection # pylint: disable=3rd-party-module-not-gated
  3. from . import docs, 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")