mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
21 lines
339 B
Python
21 lines
339 B
Python
from bottle import Bottle, route, request, redirect, response, SimpleTemplate
|
|
from Cheetah.Template import Template
|
|
|
|
|
|
app = Bottle()
|
|
|
|
|
|
@route('/other')
|
|
def a():
|
|
return Template("sink")
|
|
|
|
|
|
class Template3(Template):
|
|
title = 'Hello World Example!'
|
|
contents = 'Hello World!'
|
|
|
|
|
|
@route('/other2')
|
|
def b():
|
|
t3 = Template3("sink")
|