github.com/goplus/gossa@v0.3.25/pkg/net/http/fcgi/go116_export.go (about) 1 // export by github.com/goplus/gossa/cmd/qexp 2 3 //+build go1.16,!go1.17 4 5 package fcgi 6 7 import ( 8 q "net/http/fcgi" 9 10 "reflect" 11 12 "github.com/goplus/gossa" 13 ) 14 15 func init() { 16 gossa.RegisterPackage(&gossa.Package{ 17 Name: "fcgi", 18 Path: "net/http/fcgi", 19 Deps: map[string]string{ 20 "bufio": "bufio", 21 "bytes": "bytes", 22 "context": "context", 23 "encoding/binary": "binary", 24 "errors": "errors", 25 "fmt": "fmt", 26 "io": "io", 27 "net": "net", 28 "net/http": "http", 29 "net/http/cgi": "cgi", 30 "os": "os", 31 "strings": "strings", 32 "sync": "sync", 33 "time": "time", 34 }, 35 Interfaces: map[string]reflect.Type{}, 36 NamedTypes: map[string]gossa.NamedType{}, 37 AliasTypes: map[string]reflect.Type{}, 38 Vars: map[string]reflect.Value{ 39 "ErrConnClosed": reflect.ValueOf(&q.ErrConnClosed), 40 "ErrRequestAborted": reflect.ValueOf(&q.ErrRequestAborted), 41 }, 42 Funcs: map[string]reflect.Value{ 43 "ProcessEnv": reflect.ValueOf(q.ProcessEnv), 44 "Serve": reflect.ValueOf(q.Serve), 45 }, 46 TypedConsts: map[string]gossa.TypedConst{}, 47 UntypedConsts: map[string]gossa.UntypedConst{}, 48 }) 49 }