Improve Store

Still need to fill out SQLite bootstrap

Also setup plug-in system mechanism
This commit is contained in:
Dan Jones 2024-09-14 20:37:51 -05:00
commit e7b88bcc09
10 changed files with 154 additions and 6 deletions

View file

@ -4,6 +4,13 @@ type Config struct {
Name string
Env Env
BaseURL string
Conn ConnSettings
}
type ConnSettings struct {
Store string
DSN string
AdditionalSettings map[string]any
}
func (c Config) Environment() Env {