fix config path.
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
5994f48e7e
commit
8bac86e2e8
|
@ -3,6 +3,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"github.com/appleboy/gorush/gorush"
|
"github.com/appleboy/gorush/gorush"
|
||||||
|
"github.com/appleboy/gorush/gorush/config"
|
||||||
"log"
|
"log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -39,11 +40,11 @@ func main() {
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
// set default parameters.
|
// set default parameters.
|
||||||
gorush.PushConf = gorush.BuildDefaultPushConf()
|
gorush.PushConf = config.BuildDefaultPushConf()
|
||||||
|
|
||||||
// load user define config.
|
// load user define config.
|
||||||
if *confPath != "" {
|
if *confPath != "" {
|
||||||
gorush.PushConf, err = gorush.LoadConfYaml(*confPath)
|
gorush.PushConf, err = config.LoadConfYaml(*confPath)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Load yaml config file error: '%v'", err)
|
log.Printf("Load yaml config file error: '%v'", err)
|
||||||
|
|
Loading…
Reference in New Issue