mirror of
https://github.com/nadoo/glider.git
synced 2025-04-22 04:02:07 +08:00
6 lines
71 B
Go
6 lines
71 B
Go
package matcher
|
|
|
|
type Matcher interface {
|
|
Match(t interface{}) bool
|
|
}
|