1
0
Fork 0

feat: add seabird installer

This commit is contained in:
Kim, Jimin 2024-07-27 16:29:44 +09:00
parent 9f4c3a3c27
commit 64ebf35964
Signed by: pomp
GPG key ID: 2B516173EDD492EB

View file

@ -0,0 +1,15 @@
package installers
import (
"github.com/developomp/pompup/internal/wrapper"
)
func init() {
register(&Installer{
Name: "Seabird",
Desc: "Kubernetes IDE",
Setup: func() {
wrapper.FlatpakOnce("dev.skynomads.Seabird")
},
})
}