MCPcopy Create free account
hub / github.com/N4si/microservices-python-app / login

Function login

src/gateway-service/server.py:23–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

21
22@server.route("/login", methods=["POST"])
23def login():
24 token, err = access.login(request)
25
26 if not err:
27 return token
28 else:
29 return err
30
31@server.route("/upload", methods=["POST"])
32def upload():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected