Update package path

This commit is contained in:
Enrico Stahn 2018-02-18 20:51:02 +11:00
parent 42975447a1
commit 55531314ed
No known key found for this signature in database
GPG key ID: 5263621C269A50DE
5 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View file

@ -11,4 +11,4 @@
*.out *.out
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/ .vendor/

View file

@ -20,7 +20,7 @@ import (
"fmt" "fmt"
"time" "time"
"encoding/json" "encoding/json"
"../phpfpm" "github.com/hipages/php-fpm_exporter/phpfpm"
) )
// Configuration variables // Configuration variables

View file

@ -21,7 +21,7 @@ import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/spf13/viper" "github.com/spf13/viper"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"../phpfpm" "github.com/hipages/php-fpm_exporter/phpfpm"
) )
var log = logrus.New() var log = logrus.New()

View file

@ -18,7 +18,7 @@ import (
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"net/http" "net/http"
"github.com/prometheus/client_golang/prometheus/promhttp" "github.com/prometheus/client_golang/prometheus/promhttp"
"../phpfpm" "github.com/hipages/php-fpm_exporter/phpfpm"
) )
// Configuration variables // Configuration variables

View file

@ -13,7 +13,7 @@
package main package main
import "./cmd" import "github.com/hipages/php-fpm_exporter/cmd"
func main() { func main() {
cmd.Execute() cmd.Execute()