9 lines
166 B
Go
9 lines
166 B
Go
package config
|
|
|
|
import "path/filepath"
|
|
|
|
// ConfigPath returns the path to config.json.
|
|
func ConfigPath() string {
|
|
return filepath.Join(ConfigDir(), "config.json")
|
|
}
|