octopush/internal/actions/action.go
2022-09-13 22:54:49 +02:00

17 lines
298 B
Go

package actions
import (
"context"
"git.front.kjuulh.io/kjuulh/kraken/internal/schema"
"git.front.kjuulh.io/kjuulh/kraken/internal/services/storage"
)
type Action struct {
Schema *schema.KrakenSchema
}
func (a *Action) Execute(ctx context.Context, area *storage.Area) error {
return nil
}