Minor changes

This commit is contained in:
Loïc Guégan 2023-10-25 15:58:01 +02:00
parent caa032a09d
commit 1030dd08eb
2 changed files with 12 additions and 0 deletions

View file

@ -1,4 +1,5 @@
import argparse,sys
from clusterman.config import Config
from clusterman.commands import node
def main():
@ -14,6 +15,8 @@ def main():
# Parse arguments:
args = parser.parse_args()
a=Config()
# Run the proper handler
if args.command == "node":
print("Do node related stuff")

9
clusterman/config.py Normal file
View file

@ -0,0 +1,9 @@
from pathlib import Path
import os, json
class Config:
CONF_DIR=os.path.join(os.environ['HOME'],".clusterman/")
def __init__(self):
Path(self.CONF_DIR).mkdir(parents=True, exist_ok=True)
print(self.CONF_DIR)