feat(config): Schema validator, initial config merger setup

This commit is contained in:
2026-04-23 11:31:01 +02:00
parent 5126e0373f
commit 541a876307
7 changed files with 64 additions and 2 deletions
+2
View File
@@ -9,6 +9,7 @@ import commands.init as init
import commands.pull as pull
import commands.push as push
import commands.prepare as setup
from config import load_config
if __name__ == "__main__":
args, ap = cliargs.add_cli_args()
@@ -29,6 +30,7 @@ if __name__ == "__main__":
\\___/
""")
print(load_config("config.yml"))
try:
if args.cmd == "commit":
commit.commit(args.force, args.no_render)