diff --git a/product/api.go b/product/api.go index f8e2a3999d..b77ba0d4f8 100644 --- a/product/api.go +++ b/product/api.go @@ -160,6 +160,7 @@ type CloudService interface { // The service shall be registered via app.KVStoreKey service key. type KVStoreService interface { SetPluginKeyWithOptions(pluginID string, key string, value []byte, options model.PluginKVSetOptions) (bool, *model.AppError) + KVGet(productID, key string) ([]byte, *model.AppError) } // LogService is the API for accessing the log service APIs.