mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
19 lines
323 B
Python
19 lines
323 B
Python
from flask import render_template
|
|
|
|
from app.main import main
|
|
|
|
|
|
@main.route('/index')
|
|
def index():
|
|
return 'Hello from notifications-admin'
|
|
|
|
|
|
@main.route("/govuk")
|
|
def govuk():
|
|
return render_template('govuk_template.html')
|
|
|
|
|
|
@main.route("/helloworld")
|
|
def helloworld():
|
|
return render_template('hello-world.html')
|