From 54bff3da7de177c832db0157144a5839f8ab70d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Wed, 25 Mar 2026 16:30:29 +0300 Subject: [PATCH] fix: rename path --- src/proto/paths.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto/paths.ts b/src/proto/paths.ts index 43ccd49..f2bfb83 100644 --- a/src/proto/paths.ts +++ b/src/proto/paths.ts @@ -1,5 +1,5 @@ import { join } from "path"; export const PROTO_PATHS = { - AUTH: join(__dirname, "../../proto/auth.proto"), + AUTH: join(__dirname, "../../proto/identity.proto"), } as const;