コード例 #1
0
ファイル: index.php プロジェクト: supuncodes/carbite
<?php

require_once "carbite.php";
Carbite::GET("/hello/@name", function ($req, $res) {
    $res->SetJSON("Hello " . $req->Params()->name);
});
Carbite::Start();