mirror of
https://github.com/djhackersdev/minime.git
synced 2026-05-02 11:27:02 -05:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
import { SaveTopicResponse } from "../response/saveTopic";
|
|
|
|
export function saveTopic(res: SaveTopicResponse) {
|
|
const buf = Buffer.alloc(0x05d0);
|
|
|
|
buf.writeInt16LE(0x009b, 0x0000);
|
|
|
|
return buf;
|
|
}
|