| 110 | } |
| 111 | |
| 112 | type RedisConfig struct { |
| 113 | Dns string `json:"dns" envconfig:"LEDGERFORGE_REDIS_DNS"` |
| 114 | SkipTLSVerify bool `json:"skip_tls_verify" envconfig:"LEDGERFORGE_REDIS_SKIP_TLS_VERIFY"` |
| 115 | PoolSize int `json:"pool_size" envconfig:"LEDGERFORGE_REDIS_POOL_SIZE"` |
| 116 | MinIdleConns int `json:"min_idle_conns" envconfig:"LEDGERFORGE_REDIS_MIN_IDLE_CONNS"` |
| 117 | } |
| 118 | |
| 119 | type TypeSenseConfig struct { |
| 120 | Dns string `json:"dns" envconfig:"LEDGERFORGE_TYPESENSE_DNS"` |
nothing calls this directly
no outgoing calls
no test coverage detected