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