42 lines
991 B
Go
42 lines
991 B
Go
|
|
// Code generated by protoc-gen-slc. DO NOT EDIT.
|
||
|
|
package server
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"git.apinb.com/bsm-apps/cms/internal/logic/site"
|
||
|
|
pb "git.apinb.com/bsm-apps/cms/pb"
|
||
|
|
)
|
||
|
|
|
||
|
|
type SiteServer struct {
|
||
|
|
pb.UnimplementedSiteServer
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewSiteServer() *SiteServer {
|
||
|
|
return &SiteServer{}
|
||
|
|
}
|
||
|
|
|
||
|
|
// 站点列表
|
||
|
|
func (s *SiteServer) Fetch(ctx context.Context, in *pb.Empty) (*pb.SiteListReply, error) {
|
||
|
|
return site.Fetch(ctx, in)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 站点详情
|
||
|
|
func (s *SiteServer) Get(ctx context.Context, in *pb.IdentRequest) (*pb.SiteItem, error) {
|
||
|
|
return site.Get(ctx, in)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 添加站点
|
||
|
|
func (s *SiteServer) Create(ctx context.Context, in *pb.SiteItem) (*pb.StatusReply, error) {
|
||
|
|
return site.Create(ctx, in)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 修改站点
|
||
|
|
func (s *SiteServer) Modify(ctx context.Context, in *pb.SiteItem) (*pb.StatusReply, error) {
|
||
|
|
return site.Modify(ctx, in)
|
||
|
|
}
|
||
|
|
|
||
|
|
// 删除站点
|
||
|
|
func (s *SiteServer) Delete(ctx context.Context, in *pb.IdentRequest) (*pb.StatusReply, error) {
|
||
|
|
return site.Delete(ctx, in)
|
||
|
|
}
|