feat: simulador GPS con cron job y pub/sub Redis

This commit is contained in:
2026-05-23 01:06:04 -06:00
parent 1667e4fb66
commit d1bfc9fbac
280 changed files with 30733 additions and 11 deletions

10
backend/node_modules/cluster-key-slot/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
declare module 'cluster-key-slot' {
// Convert a string or Buffer into a redis slot hash.
function calculate(value: string | Buffer): number;
// Convert an array of multiple strings or Buffers into a redis slot hash.
// Returns -1 if one of the keys is not for the same slot as the others
export function generateMulti(values: Array<string | Buffer>): number;
export = calculate;
}