File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use uuid::Uuid;
11
11
pub enum LinkCommand {
12
12
/// Link an app to a SQLite database
13
13
Sqlite ( SqliteLinkCommand ) ,
14
- /// Link an app to a Key Value Store
14
+ /// Link an app to a key value store
15
15
#[ clap( alias = "kv" ) ]
16
16
KeyValue ( KeyValueStoreLinkCommand ) ,
17
17
}
@@ -234,7 +234,7 @@ pub enum UnlinkCommand {
234
234
Sqlite ( SqliteUnlinkCommand ) ,
235
235
/// Unlink an app from a key value store
236
236
#[ clap( alias = "kv" ) ]
237
- KeyValueStore ( KeyValueStoreUnlinkCommand ) ,
237
+ KeyValue ( KeyValueStoreUnlinkCommand ) ,
238
238
}
239
239
240
240
impl UnlinkCommand {
@@ -245,7 +245,7 @@ impl UnlinkCommand {
245
245
client_and_app_id ( cmd. common . deployment_env_id . as_deref ( ) , & cmd. app ) . await ?;
246
246
cmd. unlink ( client, app_id) . await
247
247
}
248
- Self :: KeyValueStore ( cmd) => {
248
+ Self :: KeyValue ( cmd) => {
249
249
let ( client, app_id) =
250
250
client_and_app_id ( cmd. common . deployment_env_id . as_deref ( ) , & cmd. app ) . await ?;
251
251
cmd. unlink ( client, app_id) . await
You can’t perform that action at this time.
0 commit comments