github.com/goplus/igop@v0.25.0/pkg/mime/quotedprintable/go116_export.go (about)

     1  // export by github.com/goplus/igop/cmd/qexp
     2  
     3  //+build go1.16,!go1.17
     4  
     5  package quotedprintable
     6  
     7  import (
     8  	q "mime/quotedprintable"
     9  
    10  	"reflect"
    11  
    12  	"github.com/goplus/igop"
    13  )
    14  
    15  func init() {
    16  	igop.RegisterPackage(&igop.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]reflect.Type{
    27  			"Reader": reflect.TypeOf((*q.Reader)(nil)).Elem(),
    28  			"Writer": reflect.TypeOf((*q.Writer)(nil)).Elem(),
    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]igop.TypedConst{},
    37  		UntypedConsts: map[string]igop.UntypedConst{},
    38  	})
    39  }