util: add UnimplementedGroupControllerServer

adding UnimplementedGroupControllerServer to
the DefaultControllerServer struct to avoid
build errors when some non mandatory RPC's
are not implemented.

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna 2024-02-14 14:02:31 +01:00 committed by mergify[bot]
parent 0f724480f5
commit 728a7f5ac7

View File

@ -29,6 +29,7 @@ import (
// DefaultControllerServer points to default driver.
type DefaultControllerServer struct {
csi.UnimplementedControllerServer
csi.UnimplementedGroupControllerServer
Driver *CSIDriver
}