KimchiAPI/api_handler/Methods/v1/PingMethod.php

15 lines
332 B
PHP

<?php
namespace Methods\v1;
use KimchiAPI\Objects\Response;
class PingMethod extends \KimchiAPI\Abstracts\Method
{
public function execute(): Response
{
$response = new Response();
$response->ResultData = "Pong!";
return $response;
}
}