15 lines
274 B
Python
15 lines
274 B
Python
from flask import Blueprint
|
|
|
|
api = Blueprint(
|
|
name='api',
|
|
import_name=__name__
|
|
)
|
|
|
|
@api.route('/questions/', methods=['POST'])
|
|
def _fetch_questions():
|
|
return 'Fetch Questions'
|
|
|
|
@api.route('/submit/', methods=['POST'])
|
|
def _submit_quiz():
|
|
return 'Submit Quiz'
|