mirror of
https://github.com/EchoVault/SugarDB.git
synced 2025-10-17 21:41:41 +08:00
12 lines
270 B
Go
12 lines
270 B
Go
package config
|
|
|
|
import (
|
|
"github.com/echovault/echovault/internal/config"
|
|
)
|
|
|
|
// DefaultConfig returns the default configuration.
|
|
// / This should be used when using EchoVault as an embedded library.
|
|
func DefaultConfig() config.Config {
|
|
return config.DefaultConfig()
|
|
}
|