12 lines
188 B
Go
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
|
|
}
|