docs: fix import path in the workflow basic documentation (#9481)

The import is three levels up, but, the `src/api/workflow/route.ts` file is only two levels down from `src/workflow`.

![Screenshot 2024-10-06 at 6 09 38 PM](https://github.com/user-attachments/assets/0d94338f-a8db-406b-80fe-a64ffe500ca3)
This commit is contained in:
Damien Thiesson
2024-10-07 18:22:15 +11:00
committed by GitHub
parent 522d3ce764
commit adb3a8246a
+1 -1
View File
@@ -101,7 +101,7 @@ To execute the workflow, invoke it passing the Medusa container as a parameter.
MedusaRequest,
MedusaResponse,
} from "@medusajs/framework/http"
import myWorkflow from "../../../workflows/hello-world"
import myWorkflow from "../../workflows/hello-world"
export async function GET(
req: MedusaRequest,