| 15 | ) |
| 16 | |
| 17 | type handler struct { |
| 18 | ctx context.Context |
| 19 | client pb.EcommClient |
| 20 | TokenMaker *token.JWTMaker |
| 21 | } |
| 22 | |
| 23 | func NewHandler(client pb.EcommClient, secretKey string) *handler { |
| 24 | return &handler{ |
nothing calls this directly
no outgoing calls
no test coverage detected