mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2026-08-27 02:24:10 -05:00
15 lines
291 B
Python
15 lines
291 B
Python
"""Python templates module."""
|
|
|
|
from ...core.module import Module
|
|
from ...core.registry import registry
|
|
|
|
|
|
class PythonModule(Module):
|
|
"""Python templates module."""
|
|
|
|
name = "python"
|
|
description = "Manage Python project and automation templates"
|
|
|
|
|
|
registry.register(PythonModule)
|