just optimize code init for jinzhu

pull/391/head
Michael Li 1 year ago
parent 4b3292f9ad
commit 350f1832c4
No known key found for this signature in database

@ -29,7 +29,6 @@ var (
) )
type dataSrv struct { type dataSrv struct {
// core.IndexPostsService
core.WalletService core.WalletService
core.MessageService core.MessageService
core.TopicService core.TopicService
@ -55,12 +54,10 @@ type webDataSrvA struct {
func NewDataService() (core.DataService, core.VersionInfo) { func NewDataService() (core.DataService, core.VersionInfo) {
lazyInitial() lazyInitial()
db := conf.MustGormDB() db := conf.MustGormDB()
pvs := security.NewPhoneVerifyService() pvs := security.NewPhoneVerifyService()
tms := NewTweetMetricServentA(db) tms := NewTweetMetricServentA(db)
cis := cache.NewEventCacheIndexSrv(tms) cis := cache.NewEventCacheIndexSrv(tms)
ds := &dataSrv{ ds := &dataSrv{
TweetMetricServantA: tms, TweetMetricServantA: tms,
WalletService: newWalletService(db), WalletService: newWalletService(db),

@ -24,7 +24,6 @@ func (s *tweetMetricSrvA) UpdateRankScore(metric *cs.TweetMetric) error {
err = db.Save(postMetric).Error err = db.Save(postMetric).Error
return return
}) })
} }
func (s *tweetMetricSrvA) AddTweetMetric(postId int64) (err error) { func (s *tweetMetricSrvA) AddTweetMetric(postId int64) (err error) {

Loading…
Cancel
Save