mirror of https://github.com/eyhc1/rendercv.git
10 lines
142 B
Python
10 lines
142 B
Python
|
from typing import Literal
|
||
|
|
||
|
import pydantic
|
||
|
|
||
|
|
||
|
class DummythemeThemeOptions(pydantic.BaseModel):
|
||
|
""" """
|
||
|
|
||
|
theme: Literal["dummytheme"]
|