mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
21 lines
607 B
JavaScript
21 lines
607 B
JavaScript
function startup() {
|
|
let connection = new Connection();
|
|
let connectionView = new ConnectionView(connection);
|
|
document.getElementById('connection').appendChild(connectionView.element);
|
|
|
|
let fs = new FileSystem({
|
|
inode: 1,
|
|
mode: 0755,
|
|
type: "dir",
|
|
entries: {
|
|
"hello.txt" : { inode: 2, mode: 0444, type: "file", contents: "Hello, World!"},
|
|
"say_hello.sh": { inode: 3, mode: 0555, type: "file", contents: "#!/bin/sh\necho hello\n"}
|
|
}
|
|
});
|
|
let handler = new FileSystemHandler(fs, connection);
|
|
|
|
|
|
}
|
|
|
|
window.onload = startup;
|