15 lines
260 B
Python
15 lines
260 B
Python
from flask import Blueprint, render_template
|
|
import random
|
|
|
|
main = Blueprint('main', __name__)
|
|
|
|
|
|
@main.route('/')
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
|
|
@main.route('/random-number')
|
|
def random_number():
|
|
return str(random.randint(1, 100))
|