]> asedeno.scripts.mit.edu Git - bluechips.git/blob - bluechips/lib/app_globals.py
342c8cb8614f1276bf7130ca964bbbb08bddb3ea
[bluechips.git] / bluechips / lib / app_globals.py
1 """The application's Globals object"""
2
3 class Globals(object):
4     """Globals acts as a container for objects available throughout the
5     life of the application
6     """
7
8     def __init__(self):
9         """One instance of Globals is created during application
10         initialization and is available during requests via the 'g'
11         variable
12         """
13         pass