Make persistence provider pluggable at runtime

This commit is contained in:
Deluan 2020-01-11 14:58:46 -05:00 committed by Deluan Quintão
parent 93ab4132fe
commit 4b1c909a4d
7 changed files with 149 additions and 26 deletions

View file

@ -24,8 +24,9 @@ type sonic struct {
PlsIgnoredPatterns string `default:"^iCloud;\\~"`
// DevFlags
DevDisableAuthentication bool `default:"false"`
DevDisableFileCheck bool `default:"false"`
DevDisableAuthentication bool `default:"false"`
DevDisableFileCheck bool `default:"false"`
DevPersistenceProvider string `default:"ledisdb"`
}
var Sonic *sonic