Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/conf/__init__.py
blob: f69dccbdb9cb62c2a65cd18541facf07405530d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
from conf.ActivityRegistry import _ActivityRegistry
from conf.Profile import _Profile

__registry = _ActivityRegistry()
__profile = _Profile()

def get_activity_registry():
	return __registry

def get_profile():
	return __profile