11# Openmev Go API Library
22
3- <a href =" https://pkg.go.dev/github.com/stainless-sdks /openmev-go " ><img src =" https://pkg.go.dev/badge/github.com/stainless-sdks /openmev-go .svg " alt =" Go Reference " ></a >
3+ <a href =" https://pkg.go.dev/github.com/manifoldfinance /openmev " ><img src =" https://pkg.go.dev/badge/github.com/manifoldfinance /openmev.svg " alt =" Go Reference " ></a >
44
55The Openmev Go library provides convenient access to the [ Openmev REST API] ( https://github.com/your-org/auction-system )
66from applications written in Go.
@@ -9,18 +9,26 @@ It is generated with [Stainless](https://www.stainless.com/).
99
1010## Installation
1111
12+ <!-- x-release-please-start-version -->
13+
1214``` go
1315import (
14- " github.com/stainless-sdks /openmev-go " // imported as openmev
16+ " github.com/manifoldfinance /openmev" // imported as openmev
1517)
1618```
1719
20+ <!-- x-release-please-end -->
21+
1822Or to pin the version:
1923
24+ <!-- x-release-please-start-version -->
25+
2026``` sh
21- go get -u ' github.com/stainless-sdks /openmev-go @v0.0.1-alpha.0'
27+ go get -u ' github.com/manifoldfinance /openmev@v0.0.1-alpha.0'
2228```
2329
30+ <!-- x-release-please-end -->
31+
2432## Requirements
2533
2634This library requires Go 1.18+.
@@ -36,8 +44,8 @@ import (
3644 " context"
3745 " fmt"
3846
39- " github.com/stainless-sdks /openmev-go "
40- " github.com/stainless-sdks /openmev-go /option"
47+ " github.com/manifoldfinance /openmev"
48+ " github.com/manifoldfinance /openmev/option"
4149)
4250
4351func main () {
@@ -265,7 +273,7 @@ client.API.V1.Public.Auctions.GetHistory(context.TODO(), ...,
265273
266274The request option ` option.WithDebugLog(nil) ` may be helpful while debugging.
267275
268- See the [ full list of request options] ( https://pkg.go.dev/github.com/stainless-sdks /openmev-go /option ) .
276+ See the [ full list of request options] ( https://pkg.go.dev/github.com/manifoldfinance /openmev/option ) .
269277
270278### Pagination
271279
@@ -471,7 +479,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
471479
472480We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
473481
474- We are keen for your feedback; please open an [ issue] ( https://www.github.com/stainless-sdks /openmev-go /issues ) with questions, bugs, or suggestions.
482+ We are keen for your feedback; please open an [ issue] ( https://www.github.com/manifoldfinance /openmev/issues ) with questions, bugs, or suggestions.
475483
476484## Contributing
477485
0 commit comments