kiwimix/pkg/stackops/stack_operation.go

8 lines
198 B
Go

package stackops
import basetypes "code.apps.glenux.net/glenux/kiwimix/pkg/basetypes"
type StackOperation interface {
Execute(stack *basetypes.Stack, filePath string) (*basetypes.Stack, error)
}