mirror of
https://github.com/go-kratos/kratos.git
synced 2025-02-05 13:15:11 +02:00
7 lines
113 B
Go
7 lines
113 B
Go
|
package selector
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
// Filter is select filter.
|
||
|
type Filter func(context.Context, []Node) []Node
|