7 lines
122 B
Go
7 lines
122 B
Go
|
package main
|
||
|
|
||
|
// Filter interface to include a product based on filters
|
||
|
type Filter interface {
|
||
|
Include(*Product) bool
|
||
|
}
|