Source code for pympo.config

from typing import Literal


[docs] class Config: backend: Literal["py", "rs"] = "rs"
config = Config()