version bump

This commit is contained in:
Izalia Mae 2020-02-18 01:36:31 -05:00
parent 03a0c423be
commit 0e158e7f03
2 changed files with 10 additions and 1 deletions

View file

@ -7,7 +7,7 @@ from envbash import load_envbash
pyv = sys.version_info
version = '0.1'
version = '0.9.0'
if getattr(sys, 'frozen', False):

View file

@ -262,6 +262,15 @@ class Admin(HTTPMethodView):
return await self.get(request, msg=msg)
class Account(HTTPMethodView):
async def get(self, request):
context = ['heck']
return render('account.html', request, context)
async def post(self, requrest):
pass
class Cache(HTTPMethodView):
async def get(self, request):
urls = {k: v for k,v in cache.url.items()}