* feat: support go1.11 and go 1.12. * chore: generate. * fix: build constraint. * exclude importer.For * generate go 1.11
25 lines
499 B
Go
25 lines
499 B
Go
// +build go1.11,!go1.12
|
|
|
|
package stdlib
|
|
|
|
// Code generated by 'goexports os/signal'. DO NOT EDIT.
|
|
|
|
import (
|
|
"os/signal"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Value["os/signal"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"Ignore": reflect.ValueOf(signal.Ignore),
|
|
"Ignored": reflect.ValueOf(signal.Ignored),
|
|
"Notify": reflect.ValueOf(signal.Notify),
|
|
"Reset": reflect.ValueOf(signal.Reset),
|
|
"Stop": reflect.ValueOf(signal.Stop),
|
|
|
|
// type definitions
|
|
|
|
}
|
|
}
|