Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 2.43 KB

README.md

File metadata and controls

45 lines (32 loc) · 2.43 KB

go-overseerr

GitHub release (latest SemVer) GoDoc GitHub Workflow Status (branch) Go Report Card Codecov branch Quality Gate Status GitHub go.mod Go version (branch) Go Reference License

go-overseerr is a Go client library for accessing the Overseerr API.

Currently, go-overseerr requires Go version 1.17 or greater. go-github tracks Go's version support policy. We do our best not to break older versions of Go if we don't have to, but due to tooling constraints, we don't always test older versions.

Installation

go-overseerr is compatible with modern Go releases in module mode, with Go installed:

go get github.com/cinehouse/go-overseerr/v1

will resolve and add the package to the current development module, along with its dependencies.

Alternatively the same can be achieved if you use import in a package:

import "github.com/cinehouse/go-overseerr/v1/overseerr"

and run go get without parameters.

Finally, to use the top-of-trunk version of this repo, use the following command:

go get github.com/cinehouse/go-overseerr/v1@main