12 lines
268 B
Go
12 lines
268 B
Go
package transport
|
|
|
|
import (
|
|
"context"
|
|
"google.golang.org/protobuf/types/known/emptypb"
|
|
emailv1 "ms-auth/pkg/go/gen/email/v1"
|
|
)
|
|
|
|
func (s *AuthServer) SendEmail(ctx context.Context, req *emailv1.SendEmailRequest) (*emptypb.Empty, error) {
|
|
panic("not implemented")
|
|
}
|