changed git call from https to git readonly
[atutor.git] / mods / hello_world / module_cron.php
1 <?php\r
2 /*******\r
3  * this function named [module_name]_cron is run by the global cron script at the module's specified\r
4  * interval.\r
5  */\r
6 \r
7 function hello_world_cron() {\r
8         global $db;\r
9 \r
10         debug('yay i am running!');\r
11 }\r
12 \r
13 ?>