Files
eway/internal/core/env.go
2024-01-24 16:12:16 +03:00

12 lines
188 B
Go

package core
import (
"git.loyso.art/frx/eway/internal/entity"
"git.loyso.art/frx/eway/internal/storage"
)
type Env struct {
repository storage.Repository
mapper entity.Mapper
}