mirror of
https://github.com/rendercv/rendercv.git
synced 2026-03-13 20:30:44 -04:00
10 lines
142 B
Python
10 lines
142 B
Python
from typing import Literal
|
|
|
|
import pydantic
|
|
|
|
|
|
class DummythemeThemeOptions(pydantic.BaseModel):
|
|
""" """
|
|
|
|
theme: Literal["dummytheme"]
|