github.com/goplus/igop@v0.17.0/pkg/net/textproto/go116_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //+build go1.16,!go1.17 4 5 package textproto 6 7 import ( 8 q "net/textproto" 9 10 "reflect" 11 12 "github.com/goplus/igop" 13 ) 14 15 func init() { 16 igop.RegisterPackage(&igop.Package{ 17 Name: "textproto", 18 Path: "net/textproto", 19 Deps: map[string]string{ 20 "bufio": "bufio", 21 "bytes": "bytes", 22 "fmt": "fmt", 23 "io": "io", 24 "net": "net", 25 "strconv": "strconv", 26 "strings": "strings", 27 "sync": "sync", 28 }, 29 Interfaces: map[string]reflect.Type{}, 30 NamedTypes: map[string]reflect.Type{ 31 "Conn": reflect.TypeOf((*q.Conn)(nil)).Elem(), 32 "Error": reflect.TypeOf((*q.Error)(nil)).Elem(), 33 "MIMEHeader": reflect.TypeOf((*q.MIMEHeader)(nil)).Elem(), 34 "Pipeline": reflect.TypeOf((*q.Pipeline)(nil)).Elem(), 35 "ProtocolError": reflect.TypeOf((*q.ProtocolError)(nil)).Elem(), 36 "Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(), 37 "Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(), 38 }, 39 AliasTypes: map[string]reflect.Type{}, 40 Vars: map[string]reflect.Value{}, 41 Funcs: map[string]reflect.Value{ 42 "CanonicalMIMEHeaderKey": reflect.ValueOf(q.CanonicalMIMEHeaderKey), 43 "Dial": reflect.ValueOf(q.Dial), 44 "NewConn": reflect.ValueOf(q.NewConn), 45 "NewReader": reflect.ValueOf(q.NewReader), 46 "NewWriter": reflect.ValueOf(q.NewWriter), 47 "TrimBytes": reflect.ValueOf(q.TrimBytes), 48 "TrimString": reflect.ValueOf(q.TrimString), 49 }, 50 TypedConsts: map[string]igop.TypedConst{}, 51 UntypedConsts: map[string]igop.UntypedConst{}, 52 }) 53 }