mirror of
https://github.com/kaiyuran/Emoji-translator-Server.git
synced 2024-11-21 16:43:39 +00:00
parent
66b64f4275
commit
289789326b
1 changed files with 1 additions and 3 deletions
4
app.py
4
app.py
|
@ -1,5 +1,4 @@
|
|||
from flask import Flask, request, jsonify
|
||||
from flask_cors import CORS
|
||||
import random
|
||||
|
||||
def emojify(message):
|
||||
|
@ -205,10 +204,9 @@ def emojify(message):
|
|||
|
||||
|
||||
app = Flask(__name__)
|
||||
CORS(app)
|
||||
|
||||
|
||||
@app.route('/getemoji', methods=['GET'])
|
||||
# @cross_origin()
|
||||
def get_random_emoji():
|
||||
# Get the 'letter' parameter from the URL
|
||||
message = request.args.get('message')
|
||||
|
|
Loading…
Reference in a new issue