9 lines
174 B
Go
9 lines
174 B
Go
package storage
|
|
|
|
import "git.loyso.art/frx/eway/internal/entity"
|
|
|
|
type Repository interface {
|
|
Category() entity.CategoryRepository
|
|
GoodsItem() entity.GoodsItemRepository
|
|
}
|