feat(db): disable redis and use local map to store values
This commit is contained in:
parent
642025681b
commit
ceffa15763
7 changed files with 27 additions and 110 deletions
11
config.go
11
config.go
|
@ -9,10 +9,9 @@ import (
|
|||
)
|
||||
|
||||
type Config struct {
|
||||
Debug bool `toml:"debug"`
|
||||
Author string `toml:"author"`
|
||||
Redis *gokord.RedisCredentials `toml:"redis"`
|
||||
Database *PostgresConfig `toml:"database"`
|
||||
Debug bool `toml:"debug"`
|
||||
Author string `toml:"author"`
|
||||
Database *PostgresConfig `toml:"database"`
|
||||
}
|
||||
|
||||
type PostgresConfig struct {
|
||||
|
@ -55,14 +54,12 @@ func (c *Config) GetAuthor() string {
|
|||
}
|
||||
|
||||
func (c *Config) GetRedisCredentials() *gokord.RedisCredentials {
|
||||
return c.Redis
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *Config) SetDefaultValues() {
|
||||
c.Debug = false
|
||||
c.Author = "anhgelus"
|
||||
c.Redis = &gokord.RedisCredentials{}
|
||||
c.Redis.SetDefaultValues()
|
||||
c.Database = &PostgresConfig{}
|
||||
c.Database.SetDefaultValues()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue