mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
11 lines
203 B
Python
11 lines
203 B
Python
"""Validation model for cache config."""
|
|
|
|
# Local
|
|
from ..main import HyperglassModel
|
|
|
|
|
|
class Cache(HyperglassModel):
|
|
"""Public cache parameters."""
|
|
|
|
timeout: int = 120
|
|
show_text: bool = True
|