forked from cosmos72/gomacro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnet_http_httptrace.go
More file actions
26 lines (23 loc) · 891 Bytes
/
Copy pathnet_http_httptrace.go
File metadata and controls
26 lines (23 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// this file was generated by gomacro command: import _b "net/http/httptrace"
// DO NOT EDIT! Any change will be lost when the file is re-generated
package imports
import (
. "reflect"
httptrace "net/http/httptrace"
)
// reflection: allow interpreted code to import "net/http/httptrace"
func init() {
Packages["net/http/httptrace"] = Package{
Name: "httptrace",
Binds: map[string]Value{
"ContextClientTrace": ValueOf(httptrace.ContextClientTrace),
"WithClientTrace": ValueOf(httptrace.WithClientTrace),
}, Types: map[string]Type{
"ClientTrace": TypeOf((*httptrace.ClientTrace)(nil)).Elem(),
"DNSDoneInfo": TypeOf((*httptrace.DNSDoneInfo)(nil)).Elem(),
"DNSStartInfo": TypeOf((*httptrace.DNSStartInfo)(nil)).Elem(),
"GotConnInfo": TypeOf((*httptrace.GotConnInfo)(nil)).Elem(),
"WroteRequestInfo": TypeOf((*httptrace.WroteRequestInfo)(nil)).Elem(),
},
}
}