From c1eb355ab965e2bd47e8ad9def4c84aa21d59de1 Mon Sep 17 00:00:00 2001 From: cchensh Date: Wed, 2 Oct 2024 15:03:13 -0400 Subject: [PATCH] Added datastore command into the index --- packages/cli-test/src/cli/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/cli-test/src/cli/index.ts b/packages/cli-test/src/cli/index.ts index 4d340bd54..09467c48f 100644 --- a/packages/cli-test/src/cli/index.ts +++ b/packages/cli-test/src/cli/index.ts @@ -7,6 +7,7 @@ import app from './commands/app'; import auth from './commands/auth'; import collaborator from './commands/collaborator'; import { create } from './commands/create'; +import datastore from './commands/datastore'; import env from './commands/env'; import externalAuth from './commands/external-auth'; import func from './commands/function'; @@ -22,6 +23,7 @@ export const SlackCLI = { auth, collaborator, create, + datastore, env, externalAuth, function: func,