this fixes #1 and improved the code base

This commit is contained in:
2024-04-21 04:44:52 +00:00
parent 558a9abecc
commit 887dfcc088
29 changed files with 542 additions and 139 deletions

View File

@ -1,3 +1,4 @@
from .config import config
from .theme import Theme
__all__ = ['config', 'Theme']

View File

@ -2,20 +2,19 @@ from configparser import ConfigParser
import os
static = """
[general]
name =
phone =
email =
theme = dark
nid =
theme = light
[apps]
dhiraagu = 1
ooredoo = 1
hdc = 1
mwsc = 1
stelco = 1
medianet = 1
dhiraagu = 0
ooredoo = 0
mwsc = 0
stelco = 0
medianet = 0
[dhiraagu]
phone =
@ -45,6 +44,7 @@ bill_no =
account_no =
nid =
phone =
"""