Added a bunch of NOT NULLs.
[zzz-floof.git] / floof / lib / app_globals.py
1 """The application's Globals object"""
2
3 class Globals(object):
4
5 """Globals acts as a container for objects available throughout the
6 life of the application
7
8 """
9
10 def __init__(self):
11 """One instance of Globals is created during application
12 initialization and is available during requests via the
13 'app_globals' variable
14
15 """