Skip to content

Commit

Permalink
go sdk
Browse files Browse the repository at this point in the history
Signed-off-by: Hannah Hunter <[email protected]>
  • Loading branch information
hhunter-ms committed Jul 23, 2024
1 parent f283ad4 commit d77234b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdkdocs/go
Submodule go updated 61 files
+4 −0 .github/dependabot.yml
+3 −3 .github/holopin.yml
+2 −2 .github/workflows/fossa.yml
+3 −1 .github/workflows/test-on-push.yaml
+1 −1 .github/workflows/test-tooling.yml
+33 −17 .github/workflows/validate_examples.yaml
+21 −0 actor/manager/manager.go
+20 −3 client/client.go
+28 −1 client/client_test.go
+90 −0 client/scheduling.go
+58 −0 client/scheduling_test.go
+2 −1 client/state.go
+220 −0 client/subscribe.go
+1 −1 client/wait_test.go
+3 −10 examples/actor/README.md
+0 −29 examples/actor/go.mod
+0 −67 examples/actor/go.sum
+71 −0 examples/bidipubsub/README.md
+92 −0 examples/bidipubsub/bidisub/bidisub.go
+12 −0 examples/bidipubsub/config/pubsub.yaml
+60 −0 examples/bidipubsub/pub/pub.go
+1 −0 examples/configuration/README.md
+0 −32 examples/configuration/go.mod
+0 −74 examples/configuration/go.sum
+18 −13 examples/crypto/README.md
+43 −0 examples/dist-scheduler/README.md
+11 −0 examples/dist-scheduler/api/backup.go
+114 −0 examples/dist-scheduler/main.go
+39 −0 examples/go.mod
+93 −0 examples/go.sum
+2 −9 examples/grpc-service/README.md
+0 −25 examples/grpc-service/go.mod
+0 −49 examples/grpc-service/go.sum
+2 −0 examples/hello-world/README.md
+0 −32 examples/hello-world/go.mod
+0 −75 examples/hello-world/go.sum
+1 −1 examples/hello-world/order.go
+2 −9 examples/pubsub/README.md
+0 −28 examples/pubsub/go.mod
+0 −67 examples/pubsub/go.sum
+2 −10 examples/service/README.md
+0 −29 examples/service/go.mod
+0 −67 examples/service/go.sum
+2 −0 examples/socket/README.md
+0 −32 examples/socket/go.mod
+0 −75 examples/socket/go.sum
+1 −1 examples/socket/order.go
+1 −0 examples/workflow-parallel/README.md
+1 −0 examples/workflow/README.md
+17 −19 go.mod
+34 −39 go.sum
+4 −0 service/common/service.go
+16 −4 service/common/type.go
+50 −0 service/grpc/scheduling.go
+8 −5 service/grpc/service.go
+4 −0 service/grpc/topic.go
+19 −0 service/http/scheduling.go
+19 −5 service/http/topic.go
+42 −0 service/http/topic_test.go
+23 −14 workflow/client.go
+1 −1 workflow/client_test.go

0 comments on commit d77234b

Please sign in to comment.