projects
/
xonotic
/
xonstat.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add separate views for the top servers on a map.
[xonotic/xonstat.git]
/
xonstat
/
views
/
static.py
1
import os
2
from pyramid.response import FileResponse
3
4
def robots(request):
5
here = os.path.dirname(__file__)
6
robots_txt = os.path.join(here, "../static", "robots.txt")
7
return FileResponse(robots_txt, request=request)