@rpcbase/server 0.208.0 → 0.209.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/server",
3
- "version": "0.208.0",
3
+ "version": "0.209.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {
package/src/auth/index.js CHANGED
@@ -15,7 +15,6 @@ const sign_up_handler = async(req, res) => {
15
15
  }
16
16
 
17
17
  const sign_in_handler = async(req, res) => {
18
- console.log("WOW SIGN IN")
19
18
  const result = await sign_in(req.body, {req})
20
19
  res.json(result)
21
20
  }