mirror of
https://github.com/appwrite/appwrite
synced 2026-05-06 14:58:33 +00:00
6 lines
122 B
PHP
6 lines
122 B
PHP
<?php
|
|
|
|
return function ($context) {
|
|
$hash = md5($context->req->bodyBinary);
|
|
return $context->res->send($hash);
|
|
};
|