github.com/goplus/gossa@v0.3.25/pkg/mime/quotedprintable/go114_export.go (about) 1 // export by github.com/goplus/gossa/cmd/qexp 2 3 //+build go1.14,!go1.15 4 5 package quotedprintable 6 7 import ( 8 q "mime/quotedprintable" 9 10 "reflect" 11 12 "github.com/goplus/gossa" 13 ) 14 15 func init() { 16 gossa.RegisterPackage(&gossa.Package{ 17 Name: "quotedprintable", 18 Path: "mime/quotedprintable", 19 Deps: map[string]string{ 20 "bufio": "bufio", 21 "bytes": "bytes", 22 "fmt": "fmt", 23 "io": "io", 24 }, 25 Interfaces: map[string]reflect.Type{}, 26 NamedTypes: map[string]gossa.NamedType{ 27 "Reader": {reflect.TypeOf((*q.Reader)(nil)).Elem(), "", "Read"}, 28 "Writer": {reflect.TypeOf((*q.Writer)(nil)).Elem(), "", "Close,Write,checkLastByte,encode,flush,insertCRLF,insertSoftLineBreak,write"}, 29 }, 30 AliasTypes: map[string]reflect.Type{}, 31 Vars: map[string]reflect.Value{}, 32 Funcs: map[string]reflect.Value{ 33 "NewReader": reflect.ValueOf(q.NewReader), 34 "NewWriter": reflect.ValueOf(q.NewWriter), 35 }, 36 TypedConsts: map[string]gossa.TypedConst{}, 37 UntypedConsts: map[string]gossa.UntypedConst{}, 38 }) 39 }