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
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/
.vendor/

View file

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

View file

@ -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()

View file

@ -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

View file

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