mirror of
https://github.com/sky22333/qqbot.git
synced 2026-05-07 05:42:42 +08:00
12 lines
191 B
Go
12 lines
191 B
Go
package qqbot
|
|
|
|
import "github.com/sky22333/qqbot/config"
|
|
|
|
func LoadConfig(path string) (Config, error) {
|
|
return config.Load(path)
|
|
}
|
|
|
|
func DefaultConfig() Config {
|
|
return config.Default()
|
|
}
|