Added Quick commands

+Added Quick command Functionality
This commit is contained in:
2026-05-03 02:03:57 +02:00
parent d2b61046c6
commit b886c3e9e8
3 changed files with 209 additions and 3 deletions

View File

@@ -23,6 +23,12 @@ type Server struct {
}
type AppConfig struct {
Settings Settings `yaml:"settings"`
Servers []Server `yaml:"servers"`
Settings Settings `yaml:"settings"`
Servers []Server `yaml:"servers"`
QuickCommands []QuickCommand `yaml:"quick_commands"`
}
type QuickCommand struct {
Name string `yaml:"name"`
Command string `yaml:"command"`
}