Update package path
This commit is contained in:
parent
42975447a1
commit
55531314ed
5 changed files with 5 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -11,4 +11,4 @@
|
|||
*.out
|
||||
|
||||
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
|
||||
.glide/
|
||||
.vendor/
|
|
@ -20,7 +20,7 @@ import (
|
|||
"fmt"
|
||||
"time"
|
||||
"encoding/json"
|
||||
"../phpfpm"
|
||||
"github.com/hipages/php-fpm_exporter/phpfpm"
|
||||
)
|
||||
|
||||
// Configuration variables
|
||||
|
|
|
@ -21,7 +21,7 @@ import (
|
|||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/viper"
|
||||
"github.com/sirupsen/logrus"
|
||||
"../phpfpm"
|
||||
"github.com/hipages/php-fpm_exporter/phpfpm"
|
||||
)
|
||||
|
||||
var log = logrus.New()
|
||||
|
|
|
@ -18,7 +18,7 @@ import (
|
|||
"github.com/prometheus/client_golang/prometheus"
|
||||
"net/http"
|
||||
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||||
"../phpfpm"
|
||||
"github.com/hipages/php-fpm_exporter/phpfpm"
|
||||
)
|
||||
|
||||
// Configuration variables
|
||||
|
|
2
main.go
2
main.go
|
@ -13,7 +13,7 @@
|
|||
|
||||
package main
|
||||
|
||||
import "./cmd"
|
||||
import "github.com/hipages/php-fpm_exporter/cmd"
|
||||
|
||||
func main() {
|
||||
cmd.Execute()
|
||||
|
|
Loading…
Reference in a new issue