brie-aurore/Brie/brie/lib/app_globals.py
2012-09-29 15:38:19 +02:00

19 lines
419 B
Python

# -*- coding: utf-8 -*-
"""The application's Globals object"""
__all__ = ['Globals']
class Globals(object):
"""Container for objects available throughout the life of the application.
One instance of Globals is created during application initialization and
is available during requests via the 'app_globals' variable.
"""
def __init__(self):
"""Do nothing, by default."""
pass