mirror of
https://github.com/fergalmoran/bitchmin.git
synced 2025-12-22 09:27:53 +00:00
10 lines
136 B
Python
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!')
|
|
|