wp-go/main.go
2022-11-04 10:38:59 +08:00

60 lines
946 B
Go

package main
import (
"github/fthvgb1/wp-go/actions"
"github/fthvgb1/wp-go/actions/common"
"github/fthvgb1/wp-go/config"
"github/fthvgb1/wp-go/db"
"github/fthvgb1/wp-go/models"
"github/fthvgb1/wp-go/plugins"
"github/fthvgb1/wp-go/route"
"math/rand"
"time"
)
func init() {
rand.Seed(time.Now().UnixNano())
err := config.InitConfig()
if err != nil {
panic(err)
}
err = db.InitDb()
if err != nil {
panic(err)
}
err = models.InitOptions()
if err != nil {
panic(err)
}
err = models.InitTerms()
if err != nil {
panic(err)
}
actions.InitFeed()
common.InitActionsCommonCache()
plugins.InitDigestCache()
go cronClearCache()
}
func cronClearCache() {
t := time.NewTicker(config.Conf.CrontabClearCacheTime)
for {
select {
case <-t.C:
common.ClearCache()
plugins.ClearDigestCache()
actions.ClearCache()
}
}
}
func main() {
err := route.SetupRouter().Run(":8082")
if err != nil {
panic(err)
}
}