1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-07 06:02:27 +08:00

fix: fix some go line issue in go report card

This commit is contained in:
dudaodong
2022-01-03 14:57:14 +08:00
parent 9266d99249
commit 7a9b0847f9
4 changed files with 12 additions and 13 deletions

View File

@@ -31,7 +31,7 @@ func functionValue(function interface{}) reflect.Value {
return v
}
func MustBeFunction(function interface{}) {
func mustBeFunction(function interface{}) {
v := reflect.ValueOf(function)
if v.Kind() != reflect.Func {
panic(fmt.Sprintf("Invalid function type, value of type %T", function))