Skip to content
Snippets Groups Projects
Commit 35729661 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Remove playground blueprint

parent 6ad62515
No related branches found
No related tags found
No related merge requests found
from flask import Blueprint
playground = Blueprint('playground', __name__)
from . import events, views # noqa
from flask import render_template
from flask_login import login_required
from . import playground
@playground.route('/')
@login_required
def index():
return render_template('playground/index.html.j2',
title='Playground')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment