Skip to content

Commit

Permalink
feat: logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwynr committed Sep 9, 2024
1 parent c23e5f3 commit 5ee9dd9
Show file tree
Hide file tree
Showing 5 changed files with 412 additions and 43 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<br/>
<p align="center">
<h3 align="center">Filen Virtual Drive</h3>
<h3 align="center">Filen Network Drive</h3>

<p align="center">
A package to mount a Filen account as a virtual drive.
A package to mount a Filen account as a network drive.
<br/>
<br/>
</p>
Expand All @@ -27,7 +27,7 @@ npm install @filen/network-drive@latest

```typescript
import FilenSDK from "@filen/sdk"
import VirtualDrive from "@filen/network-drive"
import NetworkDrive from "@filen/network-drive"
import path from "path"
import os from "os"

Expand All @@ -44,14 +44,14 @@ await filen.login({
twoFactorCode: "123456"
})

const virtualDrive = new VirtualDrive({
const networkDrive = new NetworkDrive({
sdk: filen,
mountPoint: "X:" // or /path/to/mount on Linux/macOS
})

await virtualDrive.start()
await networkDrive.start()

console.log("Virtual drive started")
console.log("Network drive started")
```

## License
Expand Down
Loading

0 comments on commit 5ee9dd9

Please sign in to comment.