diff --git a/go.mod b/go.mod index 07a563fc1..60691b5ce 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,6 @@ -module github.com/netlify/gotrue +module github.com/MalinYamato/gotrue + +replace github.com/netlify/gotrue => github.com/MalinYamato/gotrue debug require ( github.com/GoogleCloudPlatform/cloudsql-proxy v1.27.0 @@ -13,7 +15,7 @@ require ( github.com/imdario/mergo v0.0.0-20160216103600-3e95a51e0639 github.com/joho/godotenv v1.3.0 github.com/kelseyhightower/envconfig v1.4.0 - github.com/netlify/mailme v1.1.1 + github.com/MalinYamato/mailme v1.1.1 github.com/opentracing/opentracing-go v1.1.0 github.com/patrickmn/go-cache v2.1.0+incompatible // indirect github.com/pkg/errors v0.9.1 diff --git a/mailer/mailer.go b/mailer/mailer.go index b8e421309..7ee84c88e 100644 --- a/mailer/mailer.go +++ b/mailer/mailer.go @@ -6,7 +6,7 @@ import ( "github.com/netlify/gotrue/conf" "github.com/netlify/gotrue/models" - "github.com/netlify/mailme" + "github.com/MalinYamato/mailme" "github.com/sirupsen/logrus" ) diff --git a/mailer/template.go b/mailer/template.go index 88c02fdfd..56401a796 100644 --- a/mailer/template.go +++ b/mailer/template.go @@ -4,7 +4,7 @@ import ( "github.com/badoux/checkmail" "github.com/netlify/gotrue/conf" "github.com/netlify/gotrue/models" - "github.com/netlify/mailme" + "github.com/MalinYamato/mailme" ) // TemplateMailer will send mail and use templates from the site for easy mail styling