Files
cm-app-adm-dropship/application/libraries/RestTaskCoupangServiceClient.php

22 lines
352 B
PHP

<?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;
}
}