try single go mod

This commit is contained in:
Livio Amstutz 2019-11-29 15:25:20 +01:00
parent 27c8ca977a
commit 616b42e525
13 changed files with 34 additions and 531 deletions

View file

@ -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 {