package yoi:host@1.0.0; /// Grant-bound one-shot HTTP request host API. Importing this interface does not grant /// authority; package grants are checked before registration/execution and on /// every host call. interface request { request: func(request-json: string) -> string; } /// Grant-bound filesystem host API. No ambient WASI filesystem is exposed. interface fs { read: func(request-json: string) -> string; %list: func(request-json: string) -> string; write: func(request-json: string) -> string; }