12345678910111213141516171819202122232425262728 |
- package daemonset
- import (
- "context"
- pb "sghgogs.com/micro/k8s-service/proto"
- )
- type DaemonSet struct {
- }
- func (svc *DaemonSet) GetDaemonSetList(ctx context.Context, req *pb.GetDaemonSetListRequest, rsp *pb.GetDaemonSetListResponse) error {
- return nil
- }
- func (svc *DaemonSet) GetDaemonSet(ctx context.Context, req *pb.GetDaemonSetRequest, rsp *pb.GetDaemonSetResponse) error {
- return nil
- }
- func (svc *DaemonSet) UpdateDaemonSet(ctx context.Context, req *pb.UpdateDaemonSetRequest, rsp *pb.UpdateDaemonSetResponse) error {
- return nil
- }
- func (svc *DaemonSet) CreateDaemonSet(ctx context.Context, req *pb.CreateDaemonSetRequest, rsp *pb.CreateDaemonSetResponse) error {
- return nil
- }
- func (svc *DaemonSet) DeleteDaemonSet(ctx context.Context, req *pb.DeleteDaemonSetRequest, rsp *pb.DeleteDaemonSetResponse) error {
- return nil
- }
|