fix
This commit is contained in:
parent
20f4bff382
commit
48f91bd07b
6
main.go
6
main.go
@ -97,11 +97,11 @@ func main() {
|
|||||||
err := gcfg.ReadFileInto(&cfg, *config)
|
err := gcfg.ReadFileInto(&cfg, *config)
|
||||||
failOnError(err, "Parsing config")
|
failOnError(err, "Parsing config")
|
||||||
|
|
||||||
bs, err := Asset("data/code_obj_type.json")
|
_, err := Asset("data/code_obj_type.json")
|
||||||
failOnError(err, "data/code_obj_type.json")
|
failOnError(err, "data/code_obj_type.json")
|
||||||
bs, err = Asset("data/code_obj_type.json")
|
_, err = Asset("data/code_obj_type.json")
|
||||||
failOnError(err, "data/code_obj_sub_type.json")
|
failOnError(err, "data/code_obj_sub_type.json")
|
||||||
bs, err = Asset("data/code_obj_type.json")
|
_, err = Asset("data/code_obj_type.json")
|
||||||
failOnError(err, "data/msg_rules.json")
|
failOnError(err, "data/msg_rules.json")
|
||||||
|
|
||||||
// Connecting to DB
|
// Connecting to DB
|
||||||
|
Loading…
Reference in New Issue
Block a user