9 lines
100 B
Python
9 lines
100 B
Python
|
from bottle import Bottle
|
||
|
|
||
|
server = Bottle()
|
||
|
|
||
|
|
||
|
@server.route('/')
|
||
|
def index():
|
||
|
return "Groovy."
|