804a5ce32251fa7562854143b4d42e5bd73617f6
[glcas.git] / plugins / repo.php
1 <?php
2 $URL_HANDLERS["*"] = "GLCASRepo";
3
4 class GLCASRepo {
5         function __construct($config)
6         {
7                 $this->config = $config;
8         }
9         
10         function go($url)
11         {
12                 echo "i am the repo man, i repo the repo";
13         }
14         
15         private $config;
16 }
17
18 ?>