Move the presence service out of the shell

This commit is contained in:
Marco Pesenti Gritti
2006-09-15 13:54:16 +02:00
parent bcc1740f7f
commit 5f99dcf9a5
16 changed files with 17 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/python
import logging
from presence import PresenceService
import sugar.logger
sugar.logger.start('PresenceService')
logging.info('Starting presence service')
PresenceService.main()