Skip to content

Commit c2f5396

Browse files
committed
fix: removed emailpassword.Init
1 parent cd1d9a0 commit c2f5396

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

examples/with-fiber/main.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77
"github.com/gofiber/adaptor/v2"
88
"github.com/gofiber/fiber/v2"
99
"github.com/gofiber/fiber/v2/middleware/cors"
10-
"github.com/supertokens/supertokens-golang/recipe/emailpassword"
1110
"github.com/supertokens/supertokens-golang/recipe/session"
1211
"github.com/supertokens/supertokens-golang/recipe/session/sessmodels"
1312
"github.com/supertokens/supertokens-golang/recipe/thirdparty"
@@ -90,7 +89,6 @@ func main() {
9089
},
9190
}),
9291
session.Init(nil),
93-
emailpassword.Init(nil),
9492
},
9593
})
9694
if err != nil {

examples/with-go-zero/main.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
"net/http"
77
"strings"
88

9-
"github.com/supertokens/supertokens-golang/recipe/emailpassword"
109
"github.com/supertokens/supertokens-golang/recipe/session"
1110
"github.com/supertokens/supertokens-golang/recipe/thirdparty"
1211
"github.com/supertokens/supertokens-golang/recipe/thirdparty/tpmodels"
@@ -88,7 +87,6 @@ func main() {
8887
},
8988
}),
9089
session.Init(nil),
91-
emailpassword.Init(nil),
9290
},
9391
})
9492
if err != nil {

0 commit comments

Comments
 (0)