~vomun-developers/anonplus/vomun-trunk

« back to all changes in this revision

Viewing changes to src/vomun.py

  • Committer: AJ00200
  • Date: 2011-11-26 03:44:25 UTC
  • mfrom: (167.1.1)
  • Revision ID: git-v1:779ab6b7c81089f7135077c0452054788d3f4b43
Merge branch 'storage'

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    import libs.morado.morado
33
33
    libs.morado.morado.start()
34
34
 
35
 
    # Create the console. Later to be replaced with an extenal app
36
 
    #from libs.console import console
37
 
    #consoleO = console()
38
 
    #libs.threadmanager.register(consoleO)
39
 
    #consoleO.start()
40
 
 
41
35
    # Load and prepare our list of friends
42
36
    import libs.friends as friends
43
37
    friends.load_friends()
57
51
    libs.storage.manager.start()
58
52
 
59
53
    # Start the API
60
 
    ## main loop
 
54
    ## wait loop
61
55
    while libs.globals['running']:
62
56
        time.sleep(1)
63
57