mirror of
https://github.com/Neocky/pluGET.git
synced 2024-04-29 16:12:30 +00:00
993d438ff7
Implemented new and not complete config handling and implemented command parameter support
17 lines
406 B
Python
17 lines
406 B
Python
from utils.consoleoutput import consoleTitle, clearConsole, printMainMenu
|
|
from utils.utilities import check_requirements
|
|
from handlers.handle_input import createInputLists, getInput
|
|
from handlers.handle_config import checkConfig
|
|
|
|
|
|
def mainFunction():
|
|
consoleTitle()
|
|
clearConsole()
|
|
checkConfig()
|
|
check_requirements()
|
|
createInputLists()
|
|
printMainMenu()
|
|
getInput()
|
|
|
|
mainFunction()
|