fix saving and project improvments

This commit is contained in:
Aleksandr Trushkin
2024-01-25 16:42:08 +03:00
parent f94d39b124
commit 6fe250896c
17 changed files with 692 additions and 438 deletions

View File

@ -1,8 +1,14 @@
package storage
import "git.loyso.art/frx/eway/internal/entity"
import (
"io"
"git.loyso.art/frx/eway/internal/entity"
)
type Repository interface {
io.Closer
Category() entity.CategoryRepository
GoodsItem() entity.GoodsItemRepository
}