mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2026-08-28 10:04:57 -05:00
17 lines
343 B
Python
17 lines
343 B
Python
"""Packer module."""
|
|
|
|
from ...core.module import Module
|
|
from ...core.registry import registry
|
|
from ...core.validation import PackerValidator
|
|
|
|
|
|
class PackerModule(Module):
|
|
"""Packer module."""
|
|
|
|
name = "packer"
|
|
description = "Manage Packer configurations"
|
|
kind_validator_class = PackerValidator
|
|
|
|
|
|
registry.register(PackerModule)
|