2006-09-04 21:34:54 +02:00
|
|
|
from conf.ActivityRegistry import _ActivityRegistry
|
|
|
|
from conf.Profile import _Profile
|
2006-08-22 14:01:53 +02:00
|
|
|
|
2006-09-02 10:54:34 +02:00
|
|
|
__registry = _ActivityRegistry()
|
2006-09-04 21:34:54 +02:00
|
|
|
__profile = _Profile()
|
2006-08-22 14:01:53 +02:00
|
|
|
|
|
|
|
def get_activity_registry():
|
|
|
|
return __registry
|
2006-08-22 16:15:34 +02:00
|
|
|
|
|
|
|
def get_profile():
|
|
|
|
return __profile
|