emscripten Humble Cloud interface
Edward Rudd
2014-08-20 5d19454921edad7c4c6e4d54da23d62c8193fe2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
 
include 'vendor/autoload.php';
 
$da = new \DB\DA("sqlite:".__DIR__."/database.sqlite3");
 
$server = RestService\Server::create('/')
    ->setClient('\Custom\CorsClient')
 
    ->addSubController('storage', new \RestAPI\Storage($da))
        ->collectRoutes()
    ->done()
 
    ->run();
 
 
// vim: ts=4 et