1
2
3
4
5
6
7
8
9
10
11
|
"""
This file is part of the web2py Web Framework
Copyrighted by Massimo Di Pierro <mdipierro@cs.depaul.edu>
License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html)
"""
from storage import Storage
global_settings = Storage()
settings = global_settings # legacy compatibility
|
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"""
This file is part of the web2py Web Framework
Copyrighted by Massimo Di Pierro <mdipierro@cs.depaul.edu>
License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html)
"""
from storage import Storage
global_settings = Storage()
settings = global_settings # legacy compatibility
|