Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrrt committed Dec 18, 2023
1 parent 4472bbe commit 16374e3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion services/itty-hydra/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ import { Health } from "./handlers/health";
import { GraphQLHandler, HydraHandler } from "@authdog/hydra-core";
import { HydraConfigAcme } from "./hydra.config";

import { default as rawSchema } from "./.hydra/schemaRaw";
// import { default as rawSchema } from "./.hydra/schemaRaw";
let rawSchema = null;

try {
rawSchema = require("./.hydra/schemaRaw.json");
}
catch (err) {
console.log("err", err);
}



const { preflight, corsify } = createCors();

Expand Down

0 comments on commit 16374e3

Please sign in to comment.