mirror of
https://github.com/appwrite/appwrite
synced 2026-05-06 14:58:33 +00:00
7 lines
123 B
PHP
7 lines
123 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
return function ($context) {
|
||
|
|
$bytes = pack('C*', ...[0, 10, 255]);
|
||
|
|
return $context->res->binary($bytes);
|
||
|
|
};
|