package persistentvolume import ( "context" pb "sghgogs.com/micro/k8s-service/proto" ) type PersistentVolume struct{} func (svc *PersistentVolume) GetPersistentVolumeList(ctx context.Context, req *pb.GetPersistentVolumeListRequest, rsp *pb.GetPersistentVolumeListResponse) error { return nil } func (svc *PersistentVolume) CreatePersistentVolume(ctx context.Context, req *pb.CreatePersistentVolumeRequest, rsp *pb.CreatePersistentVolumeResponse) error { return nil } func (svc *PersistentVolume) DeletePersistentVolume(ctx context.Context, req *pb.DeletePersistentVolumeRequest, rsp *pb.DeletePersistentVolumeResponse) error { return nil }