diff options
Diffstat (limited to 'src/util/Constants.ts')
-rw-r--r-- | src/util/Constants.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/Constants.ts b/src/util/Constants.ts new file mode 100644 index 00000000..808d234b --- /dev/null +++ b/src/util/Constants.ts @@ -0,0 +1,3 @@ +import { VerifyOptions } from "jsonwebtoken"; + +export const JWTOptions: VerifyOptions = { algorithms: ["HS256"] }; |