Skip to content

Commit

Permalink
update go mod
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Dahlberg committed Jun 7, 2022
1 parent e516be6 commit d81d7f1
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ jobs:
# Updating go report card for main branch only
- name: GoReportCard
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: curl --fail --request POST "https://goreportcard.com/checks" --data "repo=github.com/Nerzal/gocloak"
run: curl --fail --request POST "https://goreportcard.com/checks" --data "repo=github.com/vdahlberg/gocloak"
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ linters-settings:
govet:
check-shadowing: false
goimports:
local-prefixes: github.com/Nerzal/gocloak
local-prefixes: github.com/vdahlberg/gocloak
gocognit:
min-complexity: 15
gocyclo:
Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
# gocloak

[![codebeat badge](https://codebeat.co/badges/18a37f35-6a95-4e40-9e78-272233892332)](https://codebeat.co/projects/github-com-nerzal-gocloak-main)
[![Go Report Card](https://goreportcard.com/badge/github.com/Nerzal/gocloak)](https://goreportcard.com/report/github.com/Nerzal/gocloak)
[![Go Doc](https://godoc.org/github.com/Nerzal/gocloak?status.svg)](https://godoc.org/github.com/Nerzal/gocloak)
[![Build Status](https://github.com/Nerzal/gocloak/workflows/Tests/badge.svg)](https://github.com/Nerzal/gocloak/actions?query=branch%3Amain+event%3Apush)
[![GitHub release](https://img.shields.io/github/tag/Nerzal/gocloak.svg)](https://GitHub.com/Nerzal/gocloak/releases/)
[![codecov](https://codecov.io/gh/Nerzal/gocloak/branch/master/graph/badge.svg)](https://codecov.io/gh/Nerzal/gocloak)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FNerzal%2Fgocloak.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2FNerzal%2Fgocloak?ref=badge_shield)
[![codebeat badge](https://codebeat.co/badges/18a37f35-6a95-4e40-9e78-272233892332)](https://codebeat.co/projects/github-com-vdahlberg-gocloak-main)
[![Go Report Card](https://goreportcard.com/badge/github.com/vdahlberg/gocloak)](https://goreportcard.com/report/github.com/vdahlberg/gocloak)
[![Go Doc](https://godoc.org/github.com/vdahlberg/gocloak?status.svg)](https://godoc.org/github.com/vdahlberg/gocloak)
[![Build Status](https://github.com/vdahlberg/gocloak/workflows/Tests/badge.svg)](https://github.com/vdahlberg/gocloak/actions?query=branch%3Amain+event%3Apush)
[![GitHub release](https://img.shields.io/github/tag/vdahlberg/gocloak.svg)](https://GitHub.com/vdahlberg/gocloak/releases/)
[![codecov](https://codecov.io/gh/vdahlberg/gocloak/branch/master/graph/badge.svg)](https://codecov.io/gh/vdahlberg/gocloak)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fvdahlberg%2Fgocloak.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fvdahlberg%2Fgocloak?ref=badge_shield)

Golang Keycloak API Package

This client is based on: [go-keycloak](https://github.com/PhilippHeuer/go-keycloak)

For Questions either raise an issue, or come to the [gopher-slack](https://invite.slack.golangbridge.org/) into the channel [#gocloak](https://gophers.slack.com/app_redirect?channel=gocloak)

If u are using the echo framework have a look at [gocloak-echo](https://github.com/Nerzal/gocloak-echo)
If u are using the echo framework have a look at [gocloak-echo](https://github.com/vdahlberg/gocloak-echo)

Benchmarks can be found [here](https://nerzal.github.io/gocloak/dev/bench/)
Benchmarks can be found [here](https://vdahlberg.github.io/gocloak/dev/bench/)

## Contribution

(WIP) <https://github.com/Nerzal/gocloak/wiki/Contribute>
(WIP) <https://github.com/vdahlberg/gocloak/wiki/Contribute>

## Changelog

For release notes please consult the specific releases [here](https://github.com/Nerzal/gocloak/releases)
For release notes please consult the specific releases [here](https://github.com/vdahlberg/gocloak/releases)


## Usage

### Installation

```shell
go get github.com/Nerzal/gocloak/v11
go get github.com/vdahlberg/gocloak/v11
```

### Importing

```go
import "github.com/Nerzal/gocloak/v11"
import "github.com/vdahlberg/gocloak/v11"
```

### Create New User
Expand Down Expand Up @@ -470,7 +470,7 @@ Note that empty parameters are not included, because of the use of ```omitempty`

## License

[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2FNerzal%2Fgocloak.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2FNerzal%2Fgocloak?ref=badge_large)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fvdahlberg%2Fgocloak.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fvdahlberg%2Fgocloak?ref=badge_large)

## Related Projects

Expand Down
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/pkg/errors"
"github.com/segmentio/ksuid"

"github.com/Nerzal/gocloak/v11/pkg/jwx"
"github.com/vdahlberg/gocloak/v11/pkg/jwx"
)

type gocloak struct {
Expand Down
2 changes: 1 addition & 1 deletion client_benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/Nerzal/gocloak/v11"
"github.com/vdahlberg/gocloak/v11"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/stretchr/testify/require"
"golang.org/x/crypto/pkcs12"

"github.com/Nerzal/gocloak/v11"
"github.com/vdahlberg/gocloak/v11"
)

type configAdmin struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Nerzal/gocloak/v11
module github.com/vdahlberg/gocloak/v11

go 1.15

Expand Down
2 changes: 1 addition & 1 deletion model_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"errors"
"testing"

"github.com/Nerzal/gocloak/v11"
"github.com/vdahlberg/gocloak/v11"

"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/stretchr/testify/assert"

"github.com/Nerzal/gocloak/v11"
"github.com/vdahlberg/gocloak/v11"
)

func TestStringP(t *testing.T) {
Expand Down

0 comments on commit d81d7f1

Please sign in to comment.