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