@eshanized updated the repository!!!

This commit is contained in:
Eshan Roy (Eshanized)
2024-04-23 12:45:08 +05:30
parent aca7db07f9
commit 2e111e3ee3
2 changed files with 16 additions and 1 deletions

View File

@@ -88,4 +88,7 @@ try:
except os.error as oserror:
print("[ERROR] Exception: %s" % oserror)
sys.exit(1)
sys.exit(1)
# NOTE: Read Config File dst: $HOME/.config/blackbox/blackbox.yaml
# NOTE: Initiate logger

12
blackbox/Settings.py Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/python
import os
import Functions as fn
import string
from string import Template
# NOTE: Base Directory
base_dir = os.path.dirname(os.path.realpath(__file__))
# NOTE: Deafult Config File
default_file = "%s/defaults/blackbox.yaml"