github.com/goplus/gossa@v0.3.25/pkg/html/go116_export.go (about) 1 // export by github.com/goplus/gossa/cmd/qexp 2 3 //+build go1.16,!go1.17 4 5 package html 6 7 import ( 8 q "html" 9 10 "reflect" 11 12 "github.com/goplus/gossa" 13 ) 14 15 func init() { 16 gossa.RegisterPackage(&gossa.Package{ 17 Name: "html", 18 Path: "html", 19 Deps: map[string]string{ 20 "strings": "strings", 21 "sync": "sync", 22 "unicode/utf8": "utf8", 23 }, 24 Interfaces: map[string]reflect.Type{}, 25 NamedTypes: map[string]gossa.NamedType{}, 26 AliasTypes: map[string]reflect.Type{}, 27 Vars: map[string]reflect.Value{}, 28 Funcs: map[string]reflect.Value{ 29 "EscapeString": reflect.ValueOf(q.EscapeString), 30 "UnescapeString": reflect.ValueOf(q.UnescapeString), 31 }, 32 TypedConsts: map[string]gossa.TypedConst{}, 33 UntypedConsts: map[string]gossa.UntypedConst{}, 34 }) 35 }