Skip to content

Commit 1d887bf

Browse files
committed
chore: fix import statements
1 parent 50f2d8d commit 1d887bf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Router } from "itty-router";
22
import { calculatePercentage, evaluate } from "./evaluation";
3-
import { createFlagKey, Flag, FlagPercentage } from "./flag";
3+
import { createFlagKey } from "./flag";
4+
import type { Flag, FlagPercentage } from "./flag";
45
import { getCfProperties } from "./util/request";
56
import type { Env } from "./util/request";
67
import { json, notFound, text } from "./util/response";
@@ -10,7 +11,7 @@ interface FlagPayload {
1011
percentage: FlagPercentage;
1112
}
1213

13-
const OWNER = "public"; // This should be dynamic
14+
const OWNER = "public"; // TODO: This should be dynamic
1415

1516
const router = Router();
1617

0 commit comments

Comments
 (0)