mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-07-05 17:20:05 +08:00
Initial work on the server
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
module.exports = LocalDataFilePacket;
|
||||
function LocalDataFilePacket(data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
LocalDataFilePacket.prototype.write = function(writer) {
|
||||
writer.writeString(this.data);
|
||||
};
|
||||
Reference in New Issue
Block a user