Initial Commit

This commit is contained in:
2012-06-11 12:08:59 -05:00
commit 138af6c355
8 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
class Welcome_controller extends Controller {
public function __construct() { }
public function index() {
$this->load_views('welcome');
}
}