kiwimix/pkg/stackops/stack_operation.go

8 lines
198 B
Go
Raw Permalink Normal View History

2023-06-20 21:44:50 +00:00
package stackops
import basetypes "code.apps.glenux.net/glenux/kiwimix/pkg/basetypes"
2023-06-20 21:44:50 +00:00
type StackOperation interface {
Execute(stack *basetypes.Stack, filePath string) (*basetypes.Stack, error)
2023-06-20 21:44:50 +00:00
}