]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/views/static.py
Remove more refs to sqlahelper.
[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)