wasm-nats-producer-client/wit/deps/wasi-config-0.2.0-draft/package.wit
Lorenzo Venerandi d373ebe2e2 gen files
2025-01-07 00:35:18 +01:00

14 lines
264 B
Plaintext

package wasi:config@0.2.0-draft;
interface runtime {
variant config-error {
upstream(string),
io(string),
}
get: func(key: string) -> result<option<string>, config-error>;
get-all: func() -> result<list<tuple<string, string>>, config-error>;
}