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

10 lines
161 B
PHP
Raw Normal View History

2020-07-25 20:01:48 +02:00
<?php
2022-02-23 12:37:06 +01:00
\ini_set('log_errors', 1);
\ini_set('error_log', '/tmp/rpc.log');
\header('Content-Type: application/json');
2020-07-25 20:01:48 +02:00
2022-02-23 12:37:06 +01:00
include 'src/Main.php';
2020-07-25 20:01:48 +02:00
2022-02-23 12:37:06 +01:00
(new Main)->run();