-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2894 from itowlson/fix-wits-not-playing-nicely-wi…
…th-wasm-tools Fix WITs not playing nicely with wasm-tools etc.
- Loading branch information
Showing
2 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
package spin:top-level; | ||
package fermyon:spin@3.0.0; | ||
|
||
/// The full world of a guest targeting an http-trigger | ||
world http-trigger { | ||
include platform; | ||
export wasi:http/incoming-handler@0.2.0; | ||
} | ||
|
||
/// The imports needed for a guest to run on a Spin host | ||
world platform { | ||
include fermyon:spin/platform@2.0.0; | ||
import wasi:config/store@0.2.0-draft-2024-09-27; | ||
} |