• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..18-Mar-2021-

README.mdH A D18-Mar-20212.2 KiB4029

ci.ymlH A D18-Mar-2021315 1713

core.goH A D18-Mar-20216.2 KiB18799

core_test.goH A D18-Mar-20211 KiB5344

credential.goH A D18-Mar-20211.9 KiB5426

doc.goH A D18-Mar-20216.6 KiB1681

error.goH A D18-Mar-20211.8 KiB5323

example_test.goH A D18-Mar-20212.3 KiB10178

go.modH A D18-Mar-2021182 96

go.sumH A D18-Mar-20211.4 KiB1615

headers.goH A D18-Mar-20211.1 KiB3123

log.goH A D18-Mar-20213.7 KiB11764

log_test.goH A D18-Mar-20211.4 KiB5544

policy_anonymous_credential.goH A D18-Mar-2021542 2110

policy_anonymous_credential_test.goH A D18-Mar-2021825 3425

policy_body_download.goH A D18-Mar-20213 KiB12789

policy_body_download_test.goH A D18-Mar-20218.9 KiB328298

policy_http_header.goH A D18-Mar-20211.2 KiB3920

policy_http_header_test.goH A D18-Mar-20214.2 KiB128107

policy_logging.goH A D18-Mar-20213.2 KiB10876

policy_logging_test.goH A D18-Mar-20214 KiB146113

policy_retry.goH A D18-Mar-20217.9 KiB249165

policy_retry_test.goH A D18-Mar-202117.5 KiB620572

policy_telemetry.goH A D18-Mar-20212.7 KiB9768

policy_telemetry_test.goH A D18-Mar-20215.3 KiB175158

progress.goH A D18-Mar-20212.4 KiB7945

progress_test.goH A D18-Mar-20211.5 KiB6556

request.goH A D18-Mar-20219.9 KiB345257

request_test.goH A D18-Mar-202112.5 KiB540513

response.goH A D18-Mar-20215.9 KiB237193

response_test.goH A D18-Mar-20216.5 KiB231212

transport_default_http_client.goH A D18-Mar-2021423 2213

version.goH A D18-Mar-2021358 155

README.md

1# Azure Core Client Module for Go
2
3[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/azcore)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore)
4[![Build Status](https://dev.azure.com/azure-sdk/public/_apis/build/status/go/go%20-%20azcore%20-%20ci?branchName=master)](https://dev.azure.com/azure-sdk/public/_build/latest?definitionId=1843&branchName=master)
5[![Code Coverage](https://img.shields.io/azure-devops/coverage/azure-sdk/public/1843/master)](https://img.shields.io/azure-devops/coverage/azure-sdk/public/1843/master)
6
7The `azcore` module provides a set of common interfaces and types for Go SDK client modules.
8These modules follow the [Azure SDK Design Guidelines for Go](https://azure.github.io/azure-sdk/golang_introduction.html).
9
10## Getting started
11
12This project uses [Go modules](https://github.com/golang/go/wiki/Modules) for versioning and dependency management.
13
14Typically, you will not need to explicitly install `azcore` as it will be installed as a client module dependency.
15To add the latest version to your `go.mod` file, execute the following command.
16
17```bash
18go get -u github.com/Azure/azure-sdk-for-go/sdk/azcore
19```
20
21General documentation and examples can be found on [pkg.go.dev](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore).
22
23## Contributing
24This project welcomes contributions and suggestions. Most contributions require
25you to agree to a Contributor License Agreement (CLA) declaring that you have
26the right to, and actually do, grant us the rights to use your contribution.
27For details, visit [https://cla.microsoft.com](https://cla.microsoft.com).
28
29When you submit a pull request, a CLA-bot will automatically determine whether
30you need to provide a CLA and decorate the PR appropriately (e.g., label,
31comment). Simply follow the instructions provided by the bot. You will only
32need to do this once across all repos using our CLA.
33
34This project has adopted the
35[Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
36For more information, see the
37[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
38or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any
39additional questions or comments.
40