From eb4269376099d22c49a1a3bec6ecfb8c5bfcd18a Mon Sep 17 00:00:00 2001 From: Alan Date: Wed, 24 Apr 2024 08:00:04 +0200 Subject: [PATCH] fix(datastore): cmd was runner due to duplication --- cmd/datastore/datastore.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/datastore/datastore.go b/cmd/datastore/datastore.go index 9f533b6f..ffa2237a 100644 --- a/cmd/datastore/datastore.go +++ b/cmd/datastore/datastore.go @@ -10,8 +10,8 @@ import ( func BuildDatastoreCmd(app *burrito.App) *cobra.Command { cmd := &cobra.Command{ - Use: "runner", - Short: "cmd to use burrito's runner", + Use: "datastore", + Short: "cmd to use burrito's datastore", } cmd.AddCommand(buildDatastoreStartCmd(app)) return cmd