mirror of
https://github.com/appwrite/appwrite
synced 2026-04-25 23:47:19 +00:00
5 lines
140 B
JavaScript
5 lines
140 B
JavaScript
|
|
module.exports = async(context) => {
|
||
|
|
const bytes = Buffer.from(Uint8Array.from([0, 10, 255]));
|
||
|
|
return context.res.binary(bytes);
|
||
|
|
};
|