13 lines
196 B
Go
13 lines
196 B
Go
package db_hot
|
|
|
|
import "zomo.dev/largehadroncollider/util"
|
|
|
|
// redis connection
|
|
|
|
func InitDBHotConn(conf *util.Config) (*DBHotConn, error) {
|
|
return &DBHotConn{}, nil
|
|
}
|
|
|
|
type DBHotConn struct {
|
|
}
|