syntax = "proto3"; import "base.proto"; option go_package = "pkg/proto"; message StringXSet { BaseKey key = 1; string value = 2; } message StringxGet { BaseKey key = 1; } message StringxComm { oneof string_x_comm { StringXSet get = 1; StringxGet set = 2; } }