pikman/flatpak/commands.go

16 lines
280 B
Go
Raw Normal View History

2023-01-18 18:42:08 +01:00
package flatpak
2023-01-18 18:52:29 +01:00
var PackageManager = "flatpak"
2023-01-18 18:42:08 +01:00
var Commands = map[string]string{
"install": "install",
"list": "list",
"log": "history",
"run": "run",
"remove": "uninstall",
"enter": "enter",
"search": "search",
"show": "info",
"update": "update",
}