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