linux-tools/main.py

26 lines
691 B
Python
Raw Normal View History

import fire
2019-12-14 04:11:32 +01:00
import modules.bashrc as bashrc
import modules.fail2ban as fail2ban
import modules.hacker as hacker
import modules.helloworld as helloworld
import modules.install as install
import modules.systemupdate as update
import modules.teamspeak as teamspeak
from modules.swap.SwapModule import SwapModule
from modules.vim.VimModule import VimModule
2019-12-14 04:11:32 +01:00
modules = {
"bashrc": bashrc.functions,
"fail2ban": fail2ban.functions,
"hacker": hacker.functions,
"helloworld": helloworld.functions,
"install": install.functions,
"swap": SwapModule().run,
"update": update.functions,
"teamspeak": teamspeak.functions,
2020-03-21 22:29:07 +01:00
"vim": VimModule().run,
}
2019-12-14 04:11:32 +01:00
fire.Fire(modules)