mirror of
https://github.com/mclueppers/xo-server.git
synced 2025-07-15 01:54:44 +02:00
9 lines
191 B
JavaScript
9 lines
191 B
JavaScript
module.exports = LocalDataFilePacket;
|
|
function LocalDataFilePacket(data) {
|
|
this.data = data;
|
|
}
|
|
|
|
LocalDataFilePacket.prototype.write = function(writer) {
|
|
writer.writeString(this.data);
|
|
};
|