So I have 2 routes in my express backend for Auth....
# general
k
So I have 2 routes in my express backend for Auth...
Copy code
javascript
app.post("/users/signup", async (req,res) => {
 "Create a user (Contains Email, Password(Hashed) and Birthday), and add it to the database"
})

app.post("/users/login", async (req,res) => {
  "Sign the user in, and return a JWT/SuperTokens Alternative, so it can interact with the rest of the API which require you to be logged in"
})
Would this be possible with Supertokens, and is there any tuts or part of them recipies?