This commit is contained in:
2023-03-16 10:17:44 +08:00
parent d19a1271d3
commit 21fe6be452
18 changed files with 297 additions and 132 deletions
+13
View File
@@ -25,4 +25,17 @@ class SafeController extends AbstractController
$data = $SafeService->getOssSign();
return $this->response->json($data);
}
/**
* 获取im签名数据
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getImSign(): ResponseInterface
{
$SafeService = new SafeService();
$data = $SafeService->getImSign();
return $this->response->json($data);
}
}