This commit is contained in:
2026-01-28 21:55:20 -05:00
parent 513674b0c8
commit dcd516d970
10 changed files with 90 additions and 179 deletions

View File

@@ -17,9 +17,6 @@ func (t TestArgs) Validate() error {
}
func TestAsyncFunction(t *testing.T) {
registryMutex.RLock()
defer registryMutex.RUnlock()
RegisterAsyncFunction("testAsync", func(_ context.Context, args TestArgs) (string, error) {
return "result: " + args.Field1, nil
})