"""Routes static files."""
from bottle import Bottle, route, static_file

static = Bottle()

@static.route("/static/<filename>")
def serve_static(filename):
    return static_file(filename, root="./static/")
