1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-03-01 00:35:28 +08:00

fmt: go fmt for function.go

This commit is contained in:
dudaodong
2021-12-28 11:00:43 +08:00
parent 16b5101600
commit 5c6626b37e

View File

@@ -35,6 +35,7 @@ func Before(n int, fn interface{}) func(args ...interface{}) []reflect.Value {
return res return res
} }
} }
// Fn is for curry function which is func(...interface{}) interface{} // Fn is for curry function which is func(...interface{}) interface{}
type Fn func(...interface{}) interface{} type Fn func(...interface{}) interface{}