7 lines
167 B
PHP
7 lines
167 B
PHP
<?php
|
|
$relativePath = "../";
|
|
require_once $relativePath.'classes/postHandler.php';
|
|
|
|
$handler = new PostHandler(null, null);
|
|
|
|
echo json_encode($handler->write_json());
|