- package _interface
- import (
- "git.beejay.kim/Craft/Api/config"
- "git.beejay.kim/Craft/Api/database/clickhouse"
- )
- type Databases struct {
- Clickhouse *clickhouse.Config `json:"clickhouse" yaml:"clickhouse"`
- }
- func (db *Databases) Invalidate() error {
- return config.Invalidate(db)
- }
|