You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
376 B
16 lines
376 B
3 months ago
|
package service
|
||
|
|
||
|
import (
|
||
|
"github.com/TremblingV5/DouTok/applications/feed/dal/query"
|
||
|
"github.com/TremblingV5/DouTok/pkg/hbaseHandle"
|
||
|
redishandle "github.com/TremblingV5/DouTok/pkg/redisHandle"
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
var DB *gorm.DB
|
||
|
var Do query.IVideoDo
|
||
|
var Video = query.VideoStruct
|
||
|
|
||
|
var RedisClients map[string]*redishandle.RedisClient
|
||
|
var HBClient *hbaseHandle.HBaseClient
|