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