Remove accidental print

This commit is contained in:
Pavel Korotkov 2020-07-24 17:07:45 +03:00
parent c939abaf5e
commit 0a3187aa0e

View file

@ -5,7 +5,6 @@ import (
"crypto/ecdsa" "crypto/ecdsa"
"crypto/rsa" "crypto/rsa"
"encoding/hex" "encoding/hex"
"fmt"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"regexp" "regexp"
@ -151,7 +150,6 @@ func (center *Center) AuthenticationPassed(request *http.Request) (*service.Bear
return nil, errors.Wrap(err, "failed to pass authentication procedure") return nil, errors.Wrap(err, "failed to pass authentication procedure")
} }
*/ */
fmt.Println(bearerToken)
return bearerToken, nil return bearerToken, nil
} }