Skip to content

Commit

Permalink
fix bad type
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeAspy committed Nov 16, 2023
1 parent 84651df commit 4f5704c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import fastify from "fastify";
import type { StdQuery } from "./types/query.js";
import type { Keys } from "./types/keys.js";
import untypedKeys from "../config/keys.json";
const keys: Keys = untypedKeys;
const keys = untypedKeys as Keys;
import type { ApiResponse, DDNResult, Result } from "./types/results.js";

const api = fastify();
Expand Down

0 comments on commit 4f5704c

Please sign in to comment.