Merge pull request #72 from ZeruLight/fix/dynamic-tune-vals

dynamic tune values
This commit is contained in:
wish
2023-07-01 23:59:57 +10:00
committed by GitHub
45 changed files with 3176 additions and 501 deletions

View File

@@ -16,14 +16,14 @@ import (
type Config struct {
Logger *zap.Logger
DB *sqlx.DB
ErupeConfig *config.Config
ErupeConfig *_config.Config
}
// Server is a MHF sign server.
type Server struct {
sync.Mutex
logger *zap.Logger
erupeConfig *config.Config
erupeConfig *_config.Config
sessions map[int]*Session
db *sqlx.DB
listener net.Listener