linux-tools/main.py
Lucas Noki d03fe99af0 Remove class structure
Add print helpers
Remove unnecessary .strip()
Remove unnecessary sudo commands
2020-08-02 23:24:08 +02:00

26 lines
644 B
Python

import fire
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.swap as swap
import modules.systemupdate as update
import modules.teamspeak as teamspeak
import modules.vim as vim
modules = {
"bashrc": bashrc.functions,
"fail2ban": fail2ban.functions,
"hacker": hacker.functions,
"helloworld": helloworld.functions,
"install": install.functions,
"swap": swap.run,
"update": update.functions,
"teamspeak": teamspeak.functions,
"vim": vim.functions,
}
fire.Fire(modules)