-
Notifications
You must be signed in to change notification settings - Fork 460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README with information on Go modules #775
Conversation
README.md
Outdated
import ( | ||
"github.com/stripe/stripe-go/v55" | ||
"github.com/stripe/stripe-go/v55/customer" | ||
github.com/stripe/stripe-go/v55 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if this is right. The modules Wiki has some information on this, but naturally provides no examples. Let me get #774 for in and just try it out to make sure I get the right invocation.
34d1f73
to
7c525b4
Compare
Go module support will be reverted in #774. Here, we update the README with some information about the status of Go modules in stripe-go, and how to use the library with them for the time being.
7c525b4
to
7d4eee3
Compare
"github.com/stripe/stripe-go/v55" | ||
"github.com/stripe/stripe-go/v55/customer" | ||
"github.com/stripe/stripe-go" | ||
"github.com/stripe/stripe-go/customer" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verified experimentally that this all seems to work.
r? @remi-stripe Mind taking a look at this? Thanks! |
Thanks! |
Go module support will be reverted in #774. Here, we update the README
with some information about the status of Go modules in stripe-go, and
how to use the library with them for the time being.
r? @brandur
(WIP.)