1
0
mirror of https://github.com/danog/telerpc.git synced 2024-11-30 04:38:57 +01:00
telerpc/index.php
2022-02-23 11:38:32 +00:00

10 lines
163 B
PHP

<?php
\ini_set('log_errors', 1);
\ini_set('error_log', '/tmp/rpc.log');
\header('Content-Type: application/json');
include 'src/Main.php';
(new Main())->run();