8 lines
151 B
Python
8 lines
151 B
Python
from mini_amazon import app
|
|
from flask import render_template
|
|
|
|
|
|
@app.route('/', methods=['GET'])
|
|
def index():
|
|
return render_template('index.html')
|