🦴 update boilerplate

This commit is contained in:
Fenny
2020-10-31 11:11:01 +01:00
parent 345b90f6a4
commit 0d15cb4e81
8 changed files with 103 additions and 41 deletions

13
postgres/config.go Normal file
View File

@@ -0,0 +1,13 @@
package postgres
// Config defines the config for storage.
type Config struct {
}
// ConfigDefault is the default config
var ConfigDefault = Config{}
// Helper function to set default values
func configDefault(cfg Config) Config {
return cfg
}