Skip to content

Commit

Permalink
feat: export RealEnvironment
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jul 11, 2022
1 parent 8ff1df0 commit 8cf0a6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface Environment {
os: "darwin" | "linux" | "windows";
}

class RealEnvironment implements Environment {
export class RealEnvironment implements Environment {
env(key: string): string | undefined {
return Deno.env.get(key);
}
Expand Down

0 comments on commit 8cf0a6d

Please sign in to comment.