__init__.py 278 B

1234567891011121314
  1. """Bash templates module."""
  2. from ...core.module import Module
  3. from ...core.registry import registry
  4. class BashModule(Module):
  5. """Bash templates module."""
  6. name = "bash"
  7. description = "Manage Bash script and automation templates"
  8. registry.register(BashModule)