18 lines
372 B
Go
18 lines
372 B
Go
|
package submit
|
||
|
|
||
|
import (
|
||
|
"github.com/Masterminds/squirrel"
|
||
|
"github.com/allegro/bigcache/v3"
|
||
|
"github.com/go-redis/redis/v8"
|
||
|
"github.com/gojek/heimdall/v7/httpclient"
|
||
|
"github.com/jackc/pgx/v4/pgxpool"
|
||
|
)
|
||
|
|
||
|
type Dependencies struct {
|
||
|
DB *pgxpool.Pool
|
||
|
Redis *redis.Client
|
||
|
Memory *bigcache.BigCache
|
||
|
HTTP *httpclient.Client
|
||
|
Query squirrel.StatementBuilderType
|
||
|
}
|