From ac377db9360a28d5cbf172431d57dc6753a00aea Mon Sep 17 00:00:00 2001 From: Alexis Couvreur Date: Sun, 26 Sep 2021 14:14:13 +0000 Subject: [PATCH] fix: change module to traefik-ondemand-service --- .gitignore | 2 +- go.mod | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b1abb82..f6a4b30 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ vendor -traefik-ondemand-plugin \ No newline at end of file +traefik-ondemand-service \ No newline at end of file diff --git a/go.mod b/go.mod index e87487a..9826618 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/acouvreur/traefik-ondemand-plugin +module github.com/acouvreur/traefik-ondemand-service go 1.17 diff --git a/main.go b/main.go index a04c372..89c9655 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "net/url" "time" - "github.com/acouvreur/traefik-ondemand-plugin/pkg/scaler" + "github.com/acouvreur/traefik-ondemand-service/pkg/scaler" "github.com/docker/docker/client" "gopkg.in/dc0d/tinykv.v4" )