Make the templating system work(!)

This commit is contained in:
Kegan Dougal 2015-05-19 15:03:31 +01:00
parent 4e64d9e340
commit 7563f1058b
7 changed files with 124 additions and 12 deletions

View file

@ -9,6 +9,9 @@ class AccessKeyStore(object):
self.data = {}
self.accessed_set = Set()
def keys(self):
return self.data.keys()
def add(self, key, unit_dict):
self.data[key] = unit_dict