|
@@ -1,8 +1,8 @@
|
|
|
package config
|
|
|
|
|
|
import (
|
|
|
- "beejay.kim/craft/api/database"
|
|
|
"fmt"
|
|
|
+ _interface "git.beejay.kim/Craft/Api/database/interface"
|
|
|
"time"
|
|
|
)
|
|
|
|
|
@@ -10,7 +10,7 @@ type Configuration struct {
|
|
|
Timeout int `yaml:"timeout"`
|
|
|
Issuer string `yaml:"issuer"`
|
|
|
|
|
|
- Database database.Databases `yaml:"database"`
|
|
|
+ Database _interface.Databases `yaml:"database"`
|
|
|
}
|
|
|
|
|
|
func (c Configuration) Invalidate() error {
|