Files
moxa/stdlib/go1_12_os_user.go
Ludovic Fernandez 7e07a183ed chore: support go1.11 and go 1.12. (#130)
* feat: support go1.11 and go 1.12.

* chore: generate.

* fix: build constraint.

* exclude importer.For

* generate go 1.11
2019-03-19 22:08:17 +01:00

30 lines
950 B
Go

// +build go1.12,!go1.13
package stdlib
// Code generated by 'goexports os/user'. DO NOT EDIT.
import (
"os/user"
"reflect"
)
func init() {
Value["os/user"] = map[string]reflect.Value{
// function, constant and variable definitions
"Current": reflect.ValueOf(user.Current),
"Lookup": reflect.ValueOf(user.Lookup),
"LookupGroup": reflect.ValueOf(user.LookupGroup),
"LookupGroupId": reflect.ValueOf(user.LookupGroupId),
"LookupId": reflect.ValueOf(user.LookupId),
// type definitions
"Group": reflect.ValueOf((*user.Group)(nil)),
"UnknownGroupError": reflect.ValueOf((*user.UnknownGroupError)(nil)),
"UnknownGroupIdError": reflect.ValueOf((*user.UnknownGroupIdError)(nil)),
"UnknownUserError": reflect.ValueOf((*user.UnknownUserError)(nil)),
"UnknownUserIdError": reflect.ValueOf((*user.UnknownUserIdError)(nil)),
"User": reflect.ValueOf((*user.User)(nil)),
}
}