Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:08 +09:00
commit c55f993072
1519 changed files with 374497 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
use GuzzleHttp\Client;
require_once __DIR__ . '/RestServiceClient.php';
class RestTaskCoupangServiceClient extends RestServiceClient
{
public function __construct()
{ }
public function getCategories()
{
$response = $this->request('GET', '/task/coupang/categories', []);
return $response->data;
}
}