feat: initial commit
This commit is contained in:
commit
075939142f
63 changed files with 9494 additions and 0 deletions
13
src/tofu/config.py
Normal file
13
src/tofu/config.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from os.path import abspath, dirname, join
|
||||
|
||||
from src.config import CustomBaseSettings
|
||||
|
||||
|
||||
class Config(CustomBaseSettings):
|
||||
OPENTOFU_PATH: str = "/usr/bin/tofu"
|
||||
OPENTOFU_MODULES_PATH: str = abspath(
|
||||
join(dirname(__file__), "..", "..", "tofu")
|
||||
) # no trailing slash from abspath
|
||||
|
||||
|
||||
settings = Config()
|
||||
Loading…
Add table
Add a link
Reference in a new issue