source: web/old/app_globals.py

debianmacno-cupsweb
Last change on this file was 30beeab, checked in by Jessica B. Hamrick <jhamrick@…>, 14 years ago

Remove "gutenbach-" from directory names and rename "gutenbach" to "gutenbach-server"

  • Property mode set to 100644
File size: 371 bytes
Line 
1"""The application's Globals object"""
2
3class 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
Note: See TracBrowser for help on using the repository browser.