Remove hello endpoint (#2036)

This commit is contained in:
Jonathan Zernik 2022-03-27 20:06:00 -07:00 committed by GitHub
parent 67da1c5a30
commit b578ada984
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,12 +121,6 @@ def create_app(handler, username, password):
logger.info("Getting user.")
return current_user.username
@app.route("/hello")
@login_required
def hello_world():
logger.info("Getting hello route.")
return "Hello, World!"
@app.route("/lndgetinfo", methods=["POST"])
@login_required
@protobuf_serialized(lnd_pb2.GetInfoRequest())