-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #413 from VictorAvelar/fix-broken-links
Fix documentation broken urls
- Loading branch information
Showing
7 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
// Package mollie is a wrapper around Mollie's REST API. | ||
// | ||
// See: https://www.mollie.com/en/developers | ||
// See: https://www.mollie.com/developers | ||
// | ||
// The Mollie API implements a Representational state transfer (REST) architecture. | ||
// | ||
// Sounds technical, but it’s really quite easy. It mainly breaks down to HTTP-methods | ||
// GET, PATCH, POST and DELETE matching the operations to read, update, create and delete. | ||
// | ||
// REST also implies a nice and clean structure for URLs or endpoints. | ||
// This means you can reach any part of the Mollie API on https://api.mollie.com/v2/ adding | ||
// the name of the resource you want to interact with. | ||
// The Mollie API is a straightforward REST API. This means all endpoints | ||
// either create, retrieve, or update objects. API calls are authenticated | ||
// with an [API credential](https://docs.mollie.com/reference/authentication). | ||
// In some cases, you can receive live updates via [webhooks](https://docs.mollie.com/reference/webhooks). | ||
package mollie |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters