├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── README.md ├── doc.go ├── error.go ├── examples └── main.go ├── go.mod ├── go.sum ├── provider.go ├── rest_client.go ├── rest_domain.go ├── rest_sandbox_client.go ├── streaming_client.go └── streaming_domain.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/doc.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/error.go -------------------------------------------------------------------------------- /examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/examples/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/go.sum -------------------------------------------------------------------------------- /provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/provider.go -------------------------------------------------------------------------------- /rest_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/rest_client.go -------------------------------------------------------------------------------- /rest_domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/rest_domain.go -------------------------------------------------------------------------------- /rest_sandbox_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/rest_sandbox_client.go -------------------------------------------------------------------------------- /streaming_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/streaming_client.go -------------------------------------------------------------------------------- /streaming_domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tinkoff/invest-openapi-go-sdk/HEAD/streaming_domain.go --------------------------------------------------------------------------------