mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
23 lines
820 B
Go
23 lines
820 B
Go
package grpc
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
func (s *Server) GetOrgByID(ctx context.Context, orgID *OrgID) (_ *Org, err error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-ruc8e", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) SearchOrgs(ctx context.Context, request *OrgSearchRequest) (_ *OrgSearchResponse, err error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-ruc8e", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) IsOrgUnique(ctx context.Context, request *UniqueOrgRequest) (org *UniqueOrgResponse, err error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-ruc8e", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) SetUpOrg(ctx context.Context, orgSetUp *OrgSetUpRequest) (_ *OrgSetUpResponse, err error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-ruc8e", "Not implemented")
|
|
}
|