refac: change go module path
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Markus Pesch 2023-10-02 12:49:50 +02:00
parent cdeb27dad5
commit 20868b83a5
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
10 changed files with 19 additions and 17 deletions

View File

@ -5,8 +5,8 @@ import (
"log" "log"
"os" "os"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/auth"
"github.com/alecthomas/kong" "github.com/alecthomas/kong"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/auth"
) )
var cliStruct struct { var cliStruct struct {

View File

@ -1,6 +1,6 @@
package cfg package cfg
import "gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/auth" import "git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/auth"
type AppSettings struct { type AppSettings struct {
VersionMode bool VersionMode bool

View File

@ -4,9 +4,9 @@ import (
"log" "log"
"os" "os"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/cfg"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/socket"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/cfg"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/socket"
) )
type Collector struct { type Collector struct {

View File

@ -1,9 +1,10 @@
package f2b package f2b
import ( import (
"github.com/prometheus/client_golang/prometheus"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/socket"
"log" "log"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/socket"
"github.com/prometheus/client_golang/prometheus"
) )
const ( const (

View File

@ -1,9 +1,10 @@
package textfile package textfile
import ( import (
"github.com/prometheus/client_golang/prometheus"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/cfg"
"log" "log"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/cfg"
"github.com/prometheus/client_golang/prometheus"
) )
type Collector struct { type Collector struct {

View File

@ -7,11 +7,11 @@ import (
"os/signal" "os/signal"
"syscall" "syscall"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/cfg"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/collector/f2b"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/collector/textfile"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/server"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/cfg"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/collector/f2b"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/collector/textfile"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/server"
) )
var ( var (

2
go.mod
View File

@ -1,4 +1,4 @@
module gitlab.com/hectorjsmith/fail2ban-prometheus-exporter module git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter
go 1.20 go 1.20

View File

@ -3,7 +3,7 @@ package server
import ( import (
"net/http" "net/http"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/auth" "git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/auth"
) )
func AuthMiddleware(handlerFunc http.HandlerFunc, authProvider auth.AuthProvider) http.HandlerFunc { func AuthMiddleware(handlerFunc http.HandlerFunc, authProvider auth.AuthProvider) http.HandlerFunc {

View File

@ -4,8 +4,8 @@ import (
"log" "log"
"net/http" "net/http"
"git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/collector/textfile"
"github.com/prometheus/client_golang/prometheus/promhttp" "github.com/prometheus/client_golang/prometheus/promhttp"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/collector/textfile"
) )
const ( const (

View File

@ -5,8 +5,8 @@ import (
"net/http" "net/http"
"time" "time"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/cfg" "git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/cfg"
"gitlab.com/hectorjsmith/fail2ban-prometheus-exporter/collector/textfile" "git.cryptic.systems/volker.raschek/prometheus-fail2ban-exporter/collector/textfile"
) )
func StartServer( func StartServer(