Dapr SDK for go
Go to file
Mark Chmarny 4f128a8329 http binding 2020-05-02 05:23:53 -07:00
.github remove template areas 2019-10-13 23:10:41 -07:00
client http binding 2020-05-02 05:23:53 -07:00
dapr/proto do not use data with content-type (#17) 2020-04-29 20:48:02 -07:00
example http binding 2020-05-02 05:23:53 -07:00
vendor added bespoke client 2020-05-01 10:34:38 -07:00
.gitignore added bespoke client 2020-05-01 10:34:38 -07:00
CONTRIBUTING.md Adding contribution guidance to go sdk repo 2019-10-15 17:58:08 -07:00
LICENSE Initial commit 2019-10-10 09:48:33 -07:00
Readme.md http binding 2020-05-02 05:23:53 -07:00
go.mod added bespoke client 2020-05-01 10:34:38 -07:00
go.sum added bespoke client 2020-05-01 10:34:38 -07:00

Readme.md

dapr SDK for Go

This is the dapr SDK (client) for Go.

Installation

go get github.com/dapr/go-sdk

Usage

The example folder contains a dapr enabled app that receives events (serving), and a client app that uses this SDK to invoke dapr API (client).

  1. Run the serving app
cd example/serving
dapr run --app-id serving --protocol grpc --app-port 4000 go run main.go
  1. Run the caller
cd example/client
dapr run --app-id caller go run main.go