* chore: udpate dictionaries * update gost * chore: update gost * chore(go-cve-dict): use v0.8.1 * chore: change linter from golint to revive * chore(linter): set revive config * chore: fix commands and update golangci-lint version * fix: lint errs * chore: update gost Co-authored-by: MaineK00n <mainek00n.1229@gmail.com>
13 lines
271 B
Go
13 lines
271 B
Go
package config
|
|
|
|
import "golang.org/x/xerrors"
|
|
|
|
// JSONLoader loads configuration
|
|
type JSONLoader struct {
|
|
}
|
|
|
|
// Load load the configuration JSON file specified by path arg.
|
|
func (c JSONLoader) Load(_, _, _ string) (err error) {
|
|
return xerrors.New("Not implement yet")
|
|
}
|