Introducing LunaBuild to the build flow (#36)
[lunaix-os.git] / lunaix-os / scripts / build-tools / lbuild / api.py
1 class ConfigProvider:
2     def __init__(self) -> None:
3         pass
4
5     def configured_value(self, name):
6         raise ValueError(f"config '{name}' is undefined or disabled")
7     
8     def has_config(self, name):
9         return False