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