wisski-cloud-distillery/internal/wisski/ingredient/barrel/drush/drush.go
2022-12-22 13:49:05 +01:00

18 lines
490 B
Go

package drush
import (
"github.com/FAU-CDI/wisski-distillery/internal/wisski/ingredient"
"github.com/FAU-CDI/wisski-distillery/internal/wisski/ingredient/barrel"
"github.com/FAU-CDI/wisski-distillery/internal/wisski/ingredient/mstore"
"github.com/FAU-CDI/wisski-distillery/internal/wisski/ingredient/php"
)
// Drush implements commands related to drush
type Drush struct {
ingredient.Base
Dependencies struct {
Barrel *barrel.Barrel
MStore *mstore.MStore
PHP *php.PHP
}
}