mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
11 lines
160 B
Python
11 lines
160 B
Python
from bottle import Bottle, route, request, redirect, response
|
|
import airspeed
|
|
|
|
|
|
app = Bottle()
|
|
|
|
|
|
@route('/other')
|
|
def a():
|
|
return airspeed.Template("sink")
|