Files
bitchmin/server/app/api/ping.py
Fergal Moran 256612f9cb Initial commit
2020-09-04 04:15:12 +01:00

10 lines
136 B
Python

from flask import jsonify
from app.api import api
@api.route('/ping', methods=['GET'])
def ping_pong():
return jsonify('pong!')