octopush/internal/actions/action.go

17 lines
298 B
Go
Raw Normal View History

2022-09-13 22:54:49 +02:00
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
}