sugar-toolkit-gtk3/shell/home/HomeModel.py
Marco Pesenti Gritti 3e51b086df Create a conf module. Move activity registry out of the shell
(should only be graphical) into it.
2006-08-22 14:01:53 +02:00

14 lines
269 B
Python

from home.FriendsModel import FriendsModel
from home.MeshModel import MeshModel
class HomeModel:
def __init__(self):
self._friends = FriendsModel()
self._mesh = MeshModel()
def get_friends(self):
return self._friends
def get_mesh(self):
return self._mesh