Skip to content
Open

stuff #359

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mailer/mailer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion mailer/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down