mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-21 17:07:18 +08:00
7 lines
196 B
Go
7 lines
196 B
Go
package client
|
|
|
|
import "github.com/teivah/100-go-mistakes/02-code-project-organization/6-interface-producer/store"
|
|
|
|
type customersGetter interface {
|
|
GetAllCustomers() ([]store.Customer, error)
|
|
}
|