linux-tools/main.py

18 lines
467 B
Python
Raw Normal View History

import fire
2019-12-14 04:11:32 +01:00
from modules.helloworld.HelloWorld import HelloWorld
from modules.install.ToolsInstaller import ToolsInstaller
from modules.swap.SwapModule import SwapModule
from modules.systemupdate.Systemupdate import Systemupdate
from modules.vim.VimModule import VimModule
2019-12-14 04:11:32 +01:00
modules = {
"helloworld": HelloWorld().run,
"install": ToolsInstaller,
"swap": SwapModule().run,
"update": Systemupdate().run,
"vim": VimModule().run
}
2019-12-14 04:11:32 +01:00
fire.Fire(modules)