vend with

This commit is contained in:
bel
2026-06-27 16:44:47 -06:00
parent 48c3474c15
commit a9f78655c3
20 changed files with 1068 additions and 3 deletions
@@ -0,0 +1,12 @@
package work
import (
"log"
"github.com/dbos-inc/dbos-transact-golang/dbos"
)
func Workflow(ctx dbos.DBOSContext, arg any) (any, error) {
log.Printf("WORKFLOW with %v!", arg)
return nil, nil
}