File: index.php

package info (click to toggle)
zoph 1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,632 kB
  • sloc: php: 28,044; javascript: 10,435; sql: 527; sh: 153; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 147 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
<?php
require_once "include.inc.php";

use web\request;
use zoph\app;

$app = new app(request::create());
$app->run();
$app->view?->display();

?>