try single go mod
This commit is contained in:
parent
27c8ca977a
commit
616b42e525
13 changed files with 34 additions and 531 deletions
|
@ -105,8 +105,8 @@ func (s *Storage) AuthRequestByID(id string) (op.AuthRequest, error) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
func (s *Storage) GetSigningKey() (jose.SigningKey, error) {
|
||||
return jose.SigningKey{Algorithm: jose.HS256, Key: []byte("test")}, nil
|
||||
func (s *Storage) GetSigningKey() (*jose.SigningKey, error) {
|
||||
return &jose.SigningKey{Algorithm: jose.HS256, Key: []byte("test")}, nil
|
||||
}
|
||||
|
||||
type ConfClient struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue