2021-09-26 19:13:38 +00:00
|
|
|
package joke
|
|
|
|
|
|
|
|
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 {
|
2021-10-18 08:31:17 +00:00
|
|
|
DB *pgxpool.Pool
|
|
|
|
Redis *redis.Client
|
|
|
|
Memory *bigcache.BigCache
|
|
|
|
HTTP *httpclient.Client
|
|
|
|
Query squirrel.StatementBuilderType
|
2021-09-26 19:13:38 +00:00
|
|
|
}
|