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