aboutsummaryrefslogtreecommitdiffstats
path: root/config/hash.ts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-02-11 19:15:20 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2024-02-13 06:59:44 +0530
commit8fec21d6bccfa778c14c1714d6444312e36fc3f1 (patch)
treecab910ad5048eece2d229648f2c17000ac86a44d /config/hash.ts
parentupdates (diff)
downloadferdium-server-03e8c2b08e08822bcd069ad482799eecf1ede777.tar.gz
ferdium-server-03e8c2b08e08822bcd069ad482799eecf1ede777.tar.zst
ferdium-server-03e8c2b08e08822bcd069ad482799eecf1ede777.zip
Diffstat (limited to 'config/hash.ts')
-rw-r--r--config/hash.ts7
1 files changed, 1 insertions, 6 deletions
diff --git a/config/hash.ts b/config/hash.ts
index 38c8784..891833c 100644
--- a/config/hash.ts
+++ b/config/hash.ts
@@ -6,8 +6,7 @@
6 */ 6 */
7 7
8import env from '#start/env'; 8import env from '#start/env';
9import { defineConfig } from '@adonisjs/core/hash'; 9import { defineConfig, drivers } from '@adonisjs/core/hash';
10import { drivers } from '@adonisjs/core/hash';
11 10
12/* 11/*
13|-------------------------------------------------------------------------- 12|--------------------------------------------------------------------------
@@ -84,7 +83,3 @@ export default defineConfig({
84 }, 83 },
85 }, 84 },
86}); 85});
87
88declare module '@adonisjs/core/types' {
89 export interface HashersList extends InferHashers<typeof hashConfig> {}
90}