with action creator

This commit is contained in:
2022-09-13 22:54:49 +02:00
parent 564147eb6a
commit ce55f6523c
9 changed files with 208 additions and 77 deletions

View File

@@ -0,0 +1,16 @@
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
}