Skip to content

Latest commit

 

History

History
executable file
·
10 lines (8 loc) · 189 Bytes

Server.md

File metadata and controls

executable file
·
10 lines (8 loc) · 189 Bytes

Server

You can start a web server using $server->start().

use CatPaw\Web\Interfaces\ServerInterface;
function main(ServerInterface $server) {
    return $server->start();
}