Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stuff #359

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions 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
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
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
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