11 lines
242 B
Python
11 lines
242 B
Python
import json
|
|
|
|
from flask import Blueprint, render_template, request, flash, jsonify
|
|
|
|
views = Blueprint('views', __name__)
|
|
|
|
@views.route('/', methods=['GET', 'POST'])
|
|
def beer_tap():
|
|
print("main")
|
|
return render_template('beertap.html')
|