mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 04:09:40 -06:00
552 lines
18 KiB
Go
552 lines
18 KiB
Go
// Code generated by protoc-gen-micro. DO NOT EDIT.
|
|
// source: accounts.proto
|
|
|
|
package proto
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
empty "github.com/golang/protobuf/ptypes/empty"
|
|
_ "github.com/golang/protobuf/ptypes/timestamp"
|
|
_ "google.golang.org/genproto/googleapis/api/annotations"
|
|
_ "google.golang.org/genproto/protobuf/field_mask"
|
|
math "math"
|
|
)
|
|
|
|
import (
|
|
context "context"
|
|
api "github.com/micro/go-micro/v2/api"
|
|
client "github.com/micro/go-micro/v2/client"
|
|
server "github.com/micro/go-micro/v2/server"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ api.Endpoint
|
|
var _ context.Context
|
|
var _ client.Option
|
|
var _ server.Option
|
|
|
|
// Api Endpoints for AccountsService service
|
|
|
|
func NewAccountsServiceEndpoints() []*api.Endpoint {
|
|
return []*api.Endpoint{
|
|
&api.Endpoint{
|
|
Name: "AccountsService.ListAccounts",
|
|
Path: []string{"/api/v0/accounts/accounts-list"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "AccountsService.GetAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-get"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "AccountsService.CreateAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-create"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "AccountsService.UpdateAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-update"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "AccountsService.DeleteAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-delete"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
}
|
|
}
|
|
|
|
// Client API for AccountsService service
|
|
|
|
type AccountsService interface {
|
|
// Lists accounts
|
|
ListAccounts(ctx context.Context, in *ListAccountsRequest, opts ...client.CallOption) (*ListAccountsResponse, error)
|
|
// Gets an account
|
|
GetAccount(ctx context.Context, in *GetAccountRequest, opts ...client.CallOption) (*Account, error)
|
|
// Creates an account
|
|
CreateAccount(ctx context.Context, in *CreateAccountRequest, opts ...client.CallOption) (*Account, error)
|
|
// Updates an account
|
|
UpdateAccount(ctx context.Context, in *UpdateAccountRequest, opts ...client.CallOption) (*Account, error)
|
|
// Deletes an account
|
|
DeleteAccount(ctx context.Context, in *DeleteAccountRequest, opts ...client.CallOption) (*empty.Empty, error)
|
|
}
|
|
|
|
type accountsService struct {
|
|
c client.Client
|
|
name string
|
|
}
|
|
|
|
func NewAccountsService(name string, c client.Client) AccountsService {
|
|
return &accountsService{
|
|
c: c,
|
|
name: name,
|
|
}
|
|
}
|
|
|
|
func (c *accountsService) ListAccounts(ctx context.Context, in *ListAccountsRequest, opts ...client.CallOption) (*ListAccountsResponse, error) {
|
|
req := c.c.NewRequest(c.name, "AccountsService.ListAccounts", in)
|
|
out := new(ListAccountsResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *accountsService) GetAccount(ctx context.Context, in *GetAccountRequest, opts ...client.CallOption) (*Account, error) {
|
|
req := c.c.NewRequest(c.name, "AccountsService.GetAccount", in)
|
|
out := new(Account)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *accountsService) CreateAccount(ctx context.Context, in *CreateAccountRequest, opts ...client.CallOption) (*Account, error) {
|
|
req := c.c.NewRequest(c.name, "AccountsService.CreateAccount", in)
|
|
out := new(Account)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *accountsService) UpdateAccount(ctx context.Context, in *UpdateAccountRequest, opts ...client.CallOption) (*Account, error) {
|
|
req := c.c.NewRequest(c.name, "AccountsService.UpdateAccount", in)
|
|
out := new(Account)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *accountsService) DeleteAccount(ctx context.Context, in *DeleteAccountRequest, opts ...client.CallOption) (*empty.Empty, error) {
|
|
req := c.c.NewRequest(c.name, "AccountsService.DeleteAccount", in)
|
|
out := new(empty.Empty)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for AccountsService service
|
|
|
|
type AccountsServiceHandler interface {
|
|
// Lists accounts
|
|
ListAccounts(context.Context, *ListAccountsRequest, *ListAccountsResponse) error
|
|
// Gets an account
|
|
GetAccount(context.Context, *GetAccountRequest, *Account) error
|
|
// Creates an account
|
|
CreateAccount(context.Context, *CreateAccountRequest, *Account) error
|
|
// Updates an account
|
|
UpdateAccount(context.Context, *UpdateAccountRequest, *Account) error
|
|
// Deletes an account
|
|
DeleteAccount(context.Context, *DeleteAccountRequest, *empty.Empty) error
|
|
}
|
|
|
|
func RegisterAccountsServiceHandler(s server.Server, hdlr AccountsServiceHandler, opts ...server.HandlerOption) error {
|
|
type accountsService interface {
|
|
ListAccounts(ctx context.Context, in *ListAccountsRequest, out *ListAccountsResponse) error
|
|
GetAccount(ctx context.Context, in *GetAccountRequest, out *Account) error
|
|
CreateAccount(ctx context.Context, in *CreateAccountRequest, out *Account) error
|
|
UpdateAccount(ctx context.Context, in *UpdateAccountRequest, out *Account) error
|
|
DeleteAccount(ctx context.Context, in *DeleteAccountRequest, out *empty.Empty) error
|
|
}
|
|
type AccountsService struct {
|
|
accountsService
|
|
}
|
|
h := &accountsServiceHandler{hdlr}
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "AccountsService.ListAccounts",
|
|
Path: []string{"/api/v0/accounts/accounts-list"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "AccountsService.GetAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-get"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "AccountsService.CreateAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-create"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "AccountsService.UpdateAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-update"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "AccountsService.DeleteAccount",
|
|
Path: []string{"/api/v0/accounts/accounts-delete"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
return s.Handle(s.NewHandler(&AccountsService{h}, opts...))
|
|
}
|
|
|
|
type accountsServiceHandler struct {
|
|
AccountsServiceHandler
|
|
}
|
|
|
|
func (h *accountsServiceHandler) ListAccounts(ctx context.Context, in *ListAccountsRequest, out *ListAccountsResponse) error {
|
|
return h.AccountsServiceHandler.ListAccounts(ctx, in, out)
|
|
}
|
|
|
|
func (h *accountsServiceHandler) GetAccount(ctx context.Context, in *GetAccountRequest, out *Account) error {
|
|
return h.AccountsServiceHandler.GetAccount(ctx, in, out)
|
|
}
|
|
|
|
func (h *accountsServiceHandler) CreateAccount(ctx context.Context, in *CreateAccountRequest, out *Account) error {
|
|
return h.AccountsServiceHandler.CreateAccount(ctx, in, out)
|
|
}
|
|
|
|
func (h *accountsServiceHandler) UpdateAccount(ctx context.Context, in *UpdateAccountRequest, out *Account) error {
|
|
return h.AccountsServiceHandler.UpdateAccount(ctx, in, out)
|
|
}
|
|
|
|
func (h *accountsServiceHandler) DeleteAccount(ctx context.Context, in *DeleteAccountRequest, out *empty.Empty) error {
|
|
return h.AccountsServiceHandler.DeleteAccount(ctx, in, out)
|
|
}
|
|
|
|
// Api Endpoints for GroupsService service
|
|
|
|
func NewGroupsServiceEndpoints() []*api.Endpoint {
|
|
return []*api.Endpoint{
|
|
&api.Endpoint{
|
|
Name: "GroupsService.ListGroups",
|
|
Path: []string{"/api/v0/groups/groups-list"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "GroupsService.GetGroup",
|
|
Path: []string{"/api/v0/groups/groups-get"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "GroupsService.CreateGroup",
|
|
Path: []string{"/api/v0/groups/groups-create"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "GroupsService.UpdateGroup",
|
|
Path: []string{"/api/v0/groups/groups-update"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "GroupsService.DeleteGroup",
|
|
Path: []string{"/api/v0/groups/groups-delete"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "GroupsService.AddMember",
|
|
Path: []string{"/v0/groups/{group_id=*}/members/$ref"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "GroupsService.RemoveMember",
|
|
Path: []string{"/v0/groups/{group_id=*}/members/{account_id}/$ref"},
|
|
Method: []string{"DELETE"},
|
|
Body: "",
|
|
Handler: "rpc",
|
|
},
|
|
&api.Endpoint{
|
|
Name: "GroupsService.ListMembers",
|
|
Path: []string{"/v0/groups/{id=*}/members/$ref"},
|
|
Method: []string{"GET"},
|
|
Handler: "rpc",
|
|
},
|
|
}
|
|
}
|
|
|
|
// Client API for GroupsService service
|
|
|
|
type GroupsService interface {
|
|
// Lists groups
|
|
ListGroups(ctx context.Context, in *ListGroupsRequest, opts ...client.CallOption) (*ListGroupsResponse, error)
|
|
// Gets an groups
|
|
GetGroup(ctx context.Context, in *GetGroupRequest, opts ...client.CallOption) (*Group, error)
|
|
// Creates a group
|
|
CreateGroup(ctx context.Context, in *CreateGroupRequest, opts ...client.CallOption) (*Group, error)
|
|
// Updates a group
|
|
UpdateGroup(ctx context.Context, in *UpdateGroupRequest, opts ...client.CallOption) (*Group, error)
|
|
// Deletes a group
|
|
DeleteGroup(ctx context.Context, in *DeleteGroupRequest, opts ...client.CallOption) (*empty.Empty, error)
|
|
// group:addmember https://docs.microsoft.com/en-us/graph/api/group-post-members?view=graph-rest-1.0&tabs=http
|
|
AddMember(ctx context.Context, in *AddMemberRequest, opts ...client.CallOption) (*Group, error)
|
|
// group:removemember https://docs.microsoft.com/en-us/graph/api/group-delete-members?view=graph-rest-1.0
|
|
RemoveMember(ctx context.Context, in *RemoveMemberRequest, opts ...client.CallOption) (*Group, error)
|
|
// group:listmembers https://docs.microsoft.com/en-us/graph/api/group-list-members?view=graph-rest-1.0
|
|
ListMembers(ctx context.Context, in *ListMembersRequest, opts ...client.CallOption) (*ListMembersResponse, error)
|
|
}
|
|
|
|
type groupsService struct {
|
|
c client.Client
|
|
name string
|
|
}
|
|
|
|
func NewGroupsService(name string, c client.Client) GroupsService {
|
|
return &groupsService{
|
|
c: c,
|
|
name: name,
|
|
}
|
|
}
|
|
|
|
func (c *groupsService) ListGroups(ctx context.Context, in *ListGroupsRequest, opts ...client.CallOption) (*ListGroupsResponse, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.ListGroups", in)
|
|
out := new(ListGroupsResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *groupsService) GetGroup(ctx context.Context, in *GetGroupRequest, opts ...client.CallOption) (*Group, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.GetGroup", in)
|
|
out := new(Group)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *groupsService) CreateGroup(ctx context.Context, in *CreateGroupRequest, opts ...client.CallOption) (*Group, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.CreateGroup", in)
|
|
out := new(Group)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *groupsService) UpdateGroup(ctx context.Context, in *UpdateGroupRequest, opts ...client.CallOption) (*Group, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.UpdateGroup", in)
|
|
out := new(Group)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *groupsService) DeleteGroup(ctx context.Context, in *DeleteGroupRequest, opts ...client.CallOption) (*empty.Empty, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.DeleteGroup", in)
|
|
out := new(empty.Empty)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *groupsService) AddMember(ctx context.Context, in *AddMemberRequest, opts ...client.CallOption) (*Group, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.AddMember", in)
|
|
out := new(Group)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *groupsService) RemoveMember(ctx context.Context, in *RemoveMemberRequest, opts ...client.CallOption) (*Group, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.RemoveMember", in)
|
|
out := new(Group)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *groupsService) ListMembers(ctx context.Context, in *ListMembersRequest, opts ...client.CallOption) (*ListMembersResponse, error) {
|
|
req := c.c.NewRequest(c.name, "GroupsService.ListMembers", in)
|
|
out := new(ListMembersResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for GroupsService service
|
|
|
|
type GroupsServiceHandler interface {
|
|
// Lists groups
|
|
ListGroups(context.Context, *ListGroupsRequest, *ListGroupsResponse) error
|
|
// Gets an groups
|
|
GetGroup(context.Context, *GetGroupRequest, *Group) error
|
|
// Creates a group
|
|
CreateGroup(context.Context, *CreateGroupRequest, *Group) error
|
|
// Updates a group
|
|
UpdateGroup(context.Context, *UpdateGroupRequest, *Group) error
|
|
// Deletes a group
|
|
DeleteGroup(context.Context, *DeleteGroupRequest, *empty.Empty) error
|
|
// group:addmember https://docs.microsoft.com/en-us/graph/api/group-post-members?view=graph-rest-1.0&tabs=http
|
|
AddMember(context.Context, *AddMemberRequest, *Group) error
|
|
// group:removemember https://docs.microsoft.com/en-us/graph/api/group-delete-members?view=graph-rest-1.0
|
|
RemoveMember(context.Context, *RemoveMemberRequest, *Group) error
|
|
// group:listmembers https://docs.microsoft.com/en-us/graph/api/group-list-members?view=graph-rest-1.0
|
|
ListMembers(context.Context, *ListMembersRequest, *ListMembersResponse) error
|
|
}
|
|
|
|
func RegisterGroupsServiceHandler(s server.Server, hdlr GroupsServiceHandler, opts ...server.HandlerOption) error {
|
|
type groupsService interface {
|
|
ListGroups(ctx context.Context, in *ListGroupsRequest, out *ListGroupsResponse) error
|
|
GetGroup(ctx context.Context, in *GetGroupRequest, out *Group) error
|
|
CreateGroup(ctx context.Context, in *CreateGroupRequest, out *Group) error
|
|
UpdateGroup(ctx context.Context, in *UpdateGroupRequest, out *Group) error
|
|
DeleteGroup(ctx context.Context, in *DeleteGroupRequest, out *empty.Empty) error
|
|
AddMember(ctx context.Context, in *AddMemberRequest, out *Group) error
|
|
RemoveMember(ctx context.Context, in *RemoveMemberRequest, out *Group) error
|
|
ListMembers(ctx context.Context, in *ListMembersRequest, out *ListMembersResponse) error
|
|
}
|
|
type GroupsService struct {
|
|
groupsService
|
|
}
|
|
h := &groupsServiceHandler{hdlr}
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.ListGroups",
|
|
Path: []string{"/api/v0/groups/groups-list"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.GetGroup",
|
|
Path: []string{"/api/v0/groups/groups-get"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.CreateGroup",
|
|
Path: []string{"/api/v0/groups/groups-create"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.UpdateGroup",
|
|
Path: []string{"/api/v0/groups/groups-update"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.DeleteGroup",
|
|
Path: []string{"/api/v0/groups/groups-delete"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.AddMember",
|
|
Path: []string{"/v0/groups/{group_id=*}/members/$ref"},
|
|
Method: []string{"POST"},
|
|
Body: "*",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.RemoveMember",
|
|
Path: []string{"/v0/groups/{group_id=*}/members/{account_id}/$ref"},
|
|
Method: []string{"DELETE"},
|
|
Body: "",
|
|
Handler: "rpc",
|
|
}))
|
|
opts = append(opts, api.WithEndpoint(&api.Endpoint{
|
|
Name: "GroupsService.ListMembers",
|
|
Path: []string{"/v0/groups/{id=*}/members/$ref"},
|
|
Method: []string{"GET"},
|
|
Handler: "rpc",
|
|
}))
|
|
return s.Handle(s.NewHandler(&GroupsService{h}, opts...))
|
|
}
|
|
|
|
type groupsServiceHandler struct {
|
|
GroupsServiceHandler
|
|
}
|
|
|
|
func (h *groupsServiceHandler) ListGroups(ctx context.Context, in *ListGroupsRequest, out *ListGroupsResponse) error {
|
|
return h.GroupsServiceHandler.ListGroups(ctx, in, out)
|
|
}
|
|
|
|
func (h *groupsServiceHandler) GetGroup(ctx context.Context, in *GetGroupRequest, out *Group) error {
|
|
return h.GroupsServiceHandler.GetGroup(ctx, in, out)
|
|
}
|
|
|
|
func (h *groupsServiceHandler) CreateGroup(ctx context.Context, in *CreateGroupRequest, out *Group) error {
|
|
return h.GroupsServiceHandler.CreateGroup(ctx, in, out)
|
|
}
|
|
|
|
func (h *groupsServiceHandler) UpdateGroup(ctx context.Context, in *UpdateGroupRequest, out *Group) error {
|
|
return h.GroupsServiceHandler.UpdateGroup(ctx, in, out)
|
|
}
|
|
|
|
func (h *groupsServiceHandler) DeleteGroup(ctx context.Context, in *DeleteGroupRequest, out *empty.Empty) error {
|
|
return h.GroupsServiceHandler.DeleteGroup(ctx, in, out)
|
|
}
|
|
|
|
func (h *groupsServiceHandler) AddMember(ctx context.Context, in *AddMemberRequest, out *Group) error {
|
|
return h.GroupsServiceHandler.AddMember(ctx, in, out)
|
|
}
|
|
|
|
func (h *groupsServiceHandler) RemoveMember(ctx context.Context, in *RemoveMemberRequest, out *Group) error {
|
|
return h.GroupsServiceHandler.RemoveMember(ctx, in, out)
|
|
}
|
|
|
|
func (h *groupsServiceHandler) ListMembers(ctx context.Context, in *ListMembersRequest, out *ListMembersResponse) error {
|
|
return h.GroupsServiceHandler.ListMembers(ctx, in, out)
|
|
}
|