instead of calling an http handler , move the authentication to the go kit middleware implementation
add bearer token as part of all requests
decode bearer to value of request
wrap endpoint creation with wrap function
validate with claims with name instead of email , because it is easier test with just one token once users are created with single email
instead of calling an http handler , move the authentication to the go kit middleware implementation
add bearer token as part of all requests
decode bearer to value of request
wrap endpoint creation with wrap function
validate with claims with name instead of email , because it is easier test with just one token once users are created with single email