github.com/goplus/igop@v0.17.0/pkg/net/http/httptrace/go114_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //+build go1.14,!go1.15 4 5 package httptrace 6 7 import ( 8 q "net/http/httptrace" 9 10 "reflect" 11 12 "github.com/goplus/igop" 13 ) 14 15 func init() { 16 igop.RegisterPackage(&igop.Package{ 17 Name: "httptrace", 18 Path: "net/http/httptrace", 19 Deps: map[string]string{ 20 "context": "context", 21 "crypto/tls": "tls", 22 "internal/nettrace": "nettrace", 23 "net": "net", 24 "net/textproto": "textproto", 25 "reflect": "reflect", 26 "time": "time", 27 }, 28 Interfaces: map[string]reflect.Type{}, 29 NamedTypes: map[string]reflect.Type{ 30 "ClientTrace": reflect.TypeOf((*q.ClientTrace)(nil)).Elem(), 31 "DNSDoneInfo": reflect.TypeOf((*q.DNSDoneInfo)(nil)).Elem(), 32 "DNSStartInfo": reflect.TypeOf((*q.DNSStartInfo)(nil)).Elem(), 33 "GotConnInfo": reflect.TypeOf((*q.GotConnInfo)(nil)).Elem(), 34 "WroteRequestInfo": reflect.TypeOf((*q.WroteRequestInfo)(nil)).Elem(), 35 }, 36 AliasTypes: map[string]reflect.Type{}, 37 Vars: map[string]reflect.Value{}, 38 Funcs: map[string]reflect.Value{ 39 "ContextClientTrace": reflect.ValueOf(q.ContextClientTrace), 40 "WithClientTrace": reflect.ValueOf(q.WithClientTrace), 41 }, 42 TypedConsts: map[string]igop.TypedConst{}, 43 UntypedConsts: map[string]igop.UntypedConst{}, 44 }) 45 }