mirror of
https://github.com/gofiber/storage.git
synced 2025-10-04 16:22:52 +08:00
14 lines
247 B
Go
14 lines
247 B
Go
package sqlite3
|
|
|
|
// 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
|
|
}
|