https://github.com/arm-software/embedded-development-services-client
Golang HTTP client for our embedded development online services offering
https://github.com/arm-software/embedded-development-services-client
client-library development embedded-development golang-library online-services
Last synced: 4 months ago
JSON representation
Golang HTTP client for our embedded development online services offering
- Host: GitHub
- URL: https://github.com/arm-software/embedded-development-services-client
- Owner: ARM-software
- License: apache-2.0
- Created: 2022-12-01T15:22:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-13T15:49:30.000Z (4 months ago)
- Last Synced: 2025-06-13T16:52:33.442Z (4 months ago)
- Topics: client-library, development, embedded-development, golang-library, online-services
- Language: Go
- Homepage:
- Size: 1.7 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Embedded development services HTTP client
[](https://golang.org/)
[](https://opensource.org/licenses/Apache-2.0)
[](https://pkg.go.dev/github.com/ARM-software/embedded-development-services-client/client)
[](https://goreportcard.com/report/github.com/ARM-software/embedded-development-services-client)
[](https://github.com/ossf/scorecard-action)## Overview
This repository contains an HTTP client written in Golang for communicating with Arm Embedded development services.
It is actually generated from our Web APIs contract which follows [OpenAPI 3](https://swagger.io/specification/) using the [GO generator](https://github.com/OpenAPITools/openapi-generator)*Maintainers:* @ARM-software/golang-utils-admin
## Using this libraryTo use this library, add the following line to your `go.mod`:
```
require (
github.com/ARM-software/embedded-development-services-client/client latest
...
)
```## Releases
For release notes and a history of changes of all **production** releases, please see the following:
- [Changelog](CHANGELOG.md)
## Project Structure
The follow described the major aspects of the project structure:
- `docs/` - Code reference documentation.
- `client/` - Go project source files.
- `changes/` - Collection of news files for unreleased changes.## Getting Help
- For interface definition and usage documentation, please see [Reference pages](https://pkg.go.dev/github.com/ARM-software/embedded-development-services-client/client).
- For a list of known issues and possible workarounds, please see [Known Issues](KNOWN_ISSUES.md).
- To raise a defect or enhancement please use [GitHub Issues](https://github.com/ARM-software/embedded-development-services-client/issues) or [GitHub discussions](https://github.com/ARM-software/embedded-development-services-client/discussions).## Contributing
- We are committed to fostering a welcoming community, please see our
[Code of Conduct](CODE_OF_CONDUCT.md) for more information.
- For ways to contribute to the project, please see the [Contributions Guidelines](CONTRIBUTING.md)
- For a technical introduction into developing this package, please see the [Development Guide](DEVELOPMENT.md)