file tests

This commit is contained in:
2021-03-03 15:22:22 -06:00
parent 716c4bc476
commit 6c554f2e76
4 changed files with 53 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ let next_thread_id = 1;
export default class file {
constructor(conn, handle, remote_path) {
this.conn = conn;
this.handle = handle;
this.handle = handle || null;
this.remote_path = remote_path;
this.thread_id = next_thread_id++;
}