// Code generated by wit-bindgen-go. DO NOT EDIT. // Package environment represents the imported interface "wasi:cli/environment@0.2.0". package environment import ( "github.com/bytecodealliance/wasm-tools-go/cm" ) // GetEnvironment represents the imported function "get-environment". // // get-environment: func() -> list> // //go:nosplit func GetEnvironment() (result cm.List[[2]string]) { wasmimport_GetEnvironment(&result) return } // GetArguments represents the imported function "get-arguments". // // get-arguments: func() -> list // //go:nosplit func GetArguments() (result cm.List[string]) { wasmimport_GetArguments(&result) return } // InitialCWD represents the imported function "initial-cwd". // // initial-cwd: func() -> option // //go:nosplit func InitialCWD() (result cm.Option[string]) { wasmimport_InitialCWD(&result) return }