source: gutenbach-web/old/app_globals.py @ 27ee337

debianmacno-cupsweb
Last change on this file since 27ee337 was 27ee337, checked in by Kyle Brogle <broglek@…>, 14 years ago

Actually moved files into 'old' directory

  • 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.