]> git.ipfire.org Git - ipfire.org.git/blame_incremental - src/web/location.py
crontab: Throw away all logging output of the mirror check
[ipfire.org.git] / src / web / location.py
... / ...
CommitLineData
1#!/usr/bin/python3
2
3from .. import util
4from . import base
5
6class LookupHandler(base.AnalyticsMixin, base.BaseHandler):
7 async def get(self, address):
8 # Lookup address
9 address = util.Address(self.backend, address)
10
11 self.render("location/lookup.html", address=address)