1
0
mirror of https://github.com/danog/telerpc.git synced 2024-11-26 20:14:48 +01:00
telerpc/index.php
2022-02-23 12:38:22 +01:00

10 lines
161 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();