7 lines
198 B
Go
7 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)
|
|
}
|