mirror of
https://github.com/cachethq/cachet.git
synced 2026-07-01 08:15:55 +00:00
8 lines
121 B
PHP
8 lines
121 B
PHP
<?php
|
|
|
|
class SetupController extends Controller {
|
|
public function showSetup() {
|
|
return View::make('setup');
|
|
}
|
|
}
|