mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Minor changes
This commit is contained in:
parent
caa032a09d
commit
1030dd08eb
2 changed files with 12 additions and 0 deletions
|
@ -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
9
clusterman/config.py
Normal 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)
|
Loading…
Add table
Reference in a new issue