Files
2009-06-13 03:13:31 +00:00

8 lines
62 B
PHP

<?php
interface taskInterface
{
public function run();
}
?>