mirror of
https://github.com/aljazceru/ditto.git
synced 2026-01-06 07:04:24 +01:00
Move more deps to aliases
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
// deno-lint-ignore-file ban-types
|
||||
|
||||
import { LRUCache } from '@/deps.ts';
|
||||
import { LRUCache } from 'lru-cache';
|
||||
|
||||
type FetchFn<K extends {}, V extends {}, O extends {}> = (key: K, opts: O) => Promise<V>;
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import { LRUCache } from 'lru-cache';
|
||||
|
||||
import { Conf } from '@/config.ts';
|
||||
import { generateSeededRsa, LRUCache, publicKeyToPem, secp } from '@/deps.ts';
|
||||
import { generateSeededRsa, publicKeyToPem, secp } from '@/deps.ts';
|
||||
|
||||
const opts = {
|
||||
bits: 2048,
|
||||
|
||||
Reference in New Issue
Block a user