mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
12 lines
170 B
PHP
12 lines
170 B
PHP
<?php
|
|
|
|
namespace Grocy\Controllers;
|
|
|
|
class BaseApiController extends BaseController
|
|
{
|
|
protected function ApiResponse($response)
|
|
{
|
|
return json_encode($response);
|
|
}
|
|
}
|