An open API service indexing awesome lists of open source software.

https://github.com/arm-software/embedded-development-services-client-utils

Helpers and utilities for Golang HTTP clients using our embedded development online services
https://github.com/arm-software/embedded-development-services-client-utils

arm-tools client-library golang-library online-services utilities utility-library

Last synced: 4 months ago
JSON representation

Helpers and utilities for Golang HTTP clients using our embedded development online services

Awesome Lists containing this project

README

          

# Embedded development services HTTP client utilities

[![Go Badge](https://img.shields.io/badge/go-v1.24.3-blue)](https://golang.org/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Go Reference](https://pkg.go.dev/badge/github.com/ARM-software/embedded-development-services-client-utils/utils.svg)](https://pkg.go.dev/github.com/ARM-software/embedded-development-services-client-utils/utils)
[![Go Report Card](https://goreportcard.com/badge/github.com/ARM-software/embedded-development-services-client-utils/utils)](https://goreportcard.com/report/github.com/ARM-software/embedded-development-services-client-utils/utils)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/9086/badge)](https://bestpractices.coreinfrastructure.org/projects/9086)
![Scorecard](https://img.shields.io/ossf-scorecard/github.com/ARM-software/embedded-development-services-client-utils?label=openssf%20scorecard&style=flat)

## Overview

This repository contains an HTTP client golang utilities for communicating with Arm Embedded development services. It was initially developed for numerous projects at Arm, including some running in production, in order to apply the DRY principle.

Few helpers may be themselves leveraging 3rd party libraries.

*Maintainers:* @ARM-software/golang-utils-admin

## Using this library

To use this library, add the following line to your `go.mod`:
```
require (
github.com/ARM-software/embedded-development-services-client-utils/utils 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.
- `utils/` - 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-utils/utils).
- 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-utils/issues) or [GitHub discussions](https://github.com/ARM-software/embedded-development-services-client-utils/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)