mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 19:52:03 +00:00
11 lines
262 B
Go
11 lines
262 B
Go
package grpc
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
func (s *Server) CreateToken(ctx context.Context, request *CreateTokenRequest) (_ *Token, err error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-86dG3", "Not implemented")
|
|
}
|