Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: missing import in wing framework docs (#6688)
I tried this: ```ts import { main, lift } from "@wingcloud/framework"; main((root) => { const myInflight = inflight(async () => { return "Wing!"; }); lift({ myInflight }).inflight(async ({ myInflight }) => { return myInflight(); }); }); ``` And got this: `Cannot find name 'inflight'` ## Checklist - [x] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [x] Description explains motivation and solution - [x] Tests added (always) - [ ] Docs updated (only required for features) - [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing *By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*.
- Loading branch information