wisski-cloud-distillery/component/ssh/ssh.go
2022-09-11 16:03:13 +02:00

25 lines
382 B
Go

package ssh
import (
"embed"
"github.com/FAU-CDI/wisski-distillery/component"
)
type SSH struct {
component.ComponentBase
}
func (SSH) Name() string {
return "ssh"
}
//go:embed all:stack
var resources embed.FS
func (ssh SSH) Stack() component.Installable {
return ssh.ComponentBase.MakeStack(component.Installable{
Resources: resources,
ContextPath: "stack",
})
}