Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
172 ashish 1
# -*- coding: utf-8 -*-
2
 
3
"""The application's Globals object"""
4
 
5
__all__ = ['Globals']
6
 
7
 
8
class Globals(object):
9
    """Container for objects available throughout the life of the application.
10
 
11
    One instance of Globals is created during application initialization and
12
    is available during requests via the 'app_globals' variable.
13
 
14
    """
15
 
16
    def __init__(self):
17
        """Do nothing, by default."""
18
        pass