Skip to content

Commit

Permalink
Fix linting for incomplete code
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Oct 2, 2024
1 parent 0f5ecb0 commit 8c6abdf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/server/keys.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/** Code for managing the server's SSH keys */
import fs from 'fs/promises';
// import fs from 'fs/promises';

/** Generate an SSH key */
export async function sshKeygen() {

}

export async function getPublicKey(): Promise<string> {
const data
return fs.readFile()
}
// export async function getPublicKey(): Promise<string> {
// const data
// return fs.readFile()
// }

0 comments on commit 8c6abdf

Please sign in to comment.