github.com/goplus/gossa@v0.3.25/pkg/encoding/ascii85/go117_export.go (about) 1 // export by github.com/goplus/gossa/cmd/qexp 2 3 //go:build go1.17 && !go1.18 4 // +build go1.17,!go1.18 5 6 package ascii85 7 8 import ( 9 q "encoding/ascii85" 10 11 "reflect" 12 13 "github.com/goplus/gossa" 14 ) 15 16 func init() { 17 gossa.RegisterPackage(&gossa.Package{ 18 Name: "ascii85", 19 Path: "encoding/ascii85", 20 Deps: map[string]string{ 21 "io": "io", 22 "strconv": "strconv", 23 }, 24 Interfaces: map[string]reflect.Type{}, 25 NamedTypes: map[string]gossa.NamedType{ 26 "CorruptInputError": {reflect.TypeOf((*q.CorruptInputError)(nil)).Elem(), "Error", ""}, 27 }, 28 AliasTypes: map[string]reflect.Type{}, 29 Vars: map[string]reflect.Value{}, 30 Funcs: map[string]reflect.Value{ 31 "Decode": reflect.ValueOf(q.Decode), 32 "Encode": reflect.ValueOf(q.Encode), 33 "MaxEncodedLen": reflect.ValueOf(q.MaxEncodedLen), 34 "NewDecoder": reflect.ValueOf(q.NewDecoder), 35 "NewEncoder": reflect.ValueOf(q.NewEncoder), 36 }, 37 TypedConsts: map[string]gossa.TypedConst{}, 38 UntypedConsts: map[string]gossa.UntypedConst{}, 39 }) 40 }