22 lines
820 B
Go
22 lines
820 B
Go
|
// Code generated by wit-bindgen-go. DO NOT EDIT.
|
||
|
|
||
|
// Package incominghandler represents the exported interface "wasi:http/incoming-handler@0.2.0".
|
||
|
//
|
||
|
// This interface defines a handler of incoming HTTP Requests. It should
|
||
|
// be exported by components which can respond to HTTP Requests.
|
||
|
package incominghandler
|
||
|
|
||
|
import (
|
||
|
"gitea.rebus.ninja/lore/wasm-nats-producer-client/gen/wasi/http/types"
|
||
|
)
|
||
|
|
||
|
// IncomingRequest represents the exported type alias "wasi:http/incoming-handler@0.2.0#incoming-request".
|
||
|
//
|
||
|
// See [types.IncomingRequest] for more information.
|
||
|
type IncomingRequest = types.IncomingRequest
|
||
|
|
||
|
// ResponseOutparam represents the exported type alias "wasi:http/incoming-handler@0.2.0#response-outparam".
|
||
|
//
|
||
|
// See [types.ResponseOutparam] for more information.
|
||
|
type ResponseOutparam = types.ResponseOutparam
|