feat(medusa,medusa-cli): add an exec command (#7376)

This commit is contained in:
Shahed Nasser
2024-05-21 10:56:44 +02:00
committed by GitHub
parent 442b0b2038
commit 73c917fdce
5 changed files with 62 additions and 1 deletions
+1
View File
@@ -2,5 +2,6 @@ export * from "./common"
export * from "./rule"
export * from "./batch"
export * from "./config-module"
export * from "./medusa-cli"
export * from "./medusa-container"
export * from "./with-calculated"
@@ -0,0 +1,6 @@
import { MedusaContainer } from "./medusa-container"
export type ExecArgs = {
container: MedusaContainer
args: string[]
}