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