Use local path to import local packages
This commit is contained in:
parent
b0dcec9cff
commit
dc0bdca466
3 changed files with 3 additions and 3 deletions
|
@ -19,8 +19,8 @@ import (
|
|||
"github.com/gosuri/uitable"
|
||||
"fmt"
|
||||
"time"
|
||||
"php-fpm_exporter/phpfpm"
|
||||
"encoding/json"
|
||||
"../phpfpm"
|
||||
)
|
||||
|
||||
// Configuration variables
|
||||
|
|
|
@ -21,7 +21,7 @@ import (
|
|||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/viper"
|
||||
"github.com/sirupsen/logrus"
|
||||
"php-fpm_exporter/phpfpm"
|
||||
"../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"
|
||||
"php-fpm_exporter/phpfpm"
|
||||
"../phpfpm"
|
||||
)
|
||||
|
||||
// Configuration variables
|
||||
|
|
Loading…
Reference in a new issue