25 lines
382 B
Go
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",
|
|
})
|
|
}
|