mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2026-08-28 02:24:12 -05:00
15 lines
273 B
Python
15 lines
273 B
Python
"""Static templates module."""
|
|
|
|
from ...core.module import Module
|
|
from ...core.registry import registry
|
|
|
|
|
|
class StaticModule(Module):
|
|
"""Static templates module."""
|
|
|
|
name = "static"
|
|
description = "Manage static file templates"
|
|
|
|
|
|
registry.register(StaticModule)
|