
Product
Introducing Custom Tabs for Org Alerts
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.
A Go Client or SDK that allows you to interact with the Microcks API.
Latest released version is 0.3.1.
Current development version is 0.4.0.
To get involved with our community, please make sure you are familiar with the project's Code of Conduct.
Latest released version is 0.3.1. Please check the table bealow to see what version of Microcks API it matches.
| Go Client | Microcks Version |
|---|---|
0.3.x | 1.10.0 and above |
0.2.0 | 1.10.0 and above |
0.1.0 | 1.8.0 and above |
To get the latest version, use go1.22 and fetch using the go get command. For example:
go get microcks.io/go-client@latest
To get a specific version, use go1.21+ and fetch the desired version using the go get command. For example:
go get microcks.io/go-client@v0.3.0
package main
import (
"context"
"fmt"
"log"
client "microcks.io/go-client"
)
const server = "http://localhost:8080/api"
func main() {
// Create client
c, err := client.NewClientWithResponses(server)
if err != nil {
log.Fatal(err)
}
// Request the Keycloak configuration
ctx := context.Background()
resp, err := c.GetKeycloakConfigWithResponse(ctx)
if err != nil {
log.Fatal(err)
}
// Print the response
fmt.Printf("%+v\n\n", resp.JSON200)
}
The Apache License (apache) - see LICENSE.md for more details.
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.