Skip to content

Commit 9a99b3b

Browse files
committed
Fixed node storage implementation not implementing IStorage
1 parent 1449aba commit 9a99b3b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/node/src/storage/NodeDirectoryStorage.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
import {
2+
IStorage
3+
} from "@exceptionless/core";
4+
15
import { mkdirSync } from "fs";
26
import { readdir, readFile, unlink, writeFile } from "fs/promises";
37
import { dirname, join, resolve } from "path";
48
import { argv } from "process";
59

6-
export class NodeDirectoryStorage {
10+
export class NodeDirectoryStorage implements IStorage {
711
private directory: string;
812

913
constructor(directory?: string) {

0 commit comments

Comments
 (0)