added some code for actually starting some stuff!
[xmppcentral.git] / lib / systemServer.php
1 <?php
2
3 class systemServer {
4         function go() {
5                 echo "running system Server\n";
6                 sleep(1000);
7         }
8         
9         function isRunning()
10         {
11                 // the purpose of this function is two fold, first determines if it should be running and return true if not
12                 // then checks if the ss is running or not and returns true if it is
13         }
14 }
15 ?>