chore: replace gorilla/schema with zitadel/schema (#348)

Fixes #302
This commit is contained in:
Tim Möhlmann 2023-03-28 14:57:27 +03:00 committed by GitHub
parent 6af94fded0
commit adebbe4c32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View file

@ -8,7 +8,7 @@ import (
"strings"
"time"
"github.com/gorilla/schema"
"github.com/zitadel/schema"
"golang.org/x/text/language"
"gopkg.in/square/go-jose.v2"
)

View file

@ -9,9 +9,9 @@ import (
"testing"
"time"
"github.com/gorilla/schema"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/zitadel/schema"
"golang.org/x/text/language"
)