6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
import { join } from "path";
|
|
|
|
export const PROTO_PATHS = {
|
|
AUTH: join(__dirname, "../../proto/identity.proto"),
|
|
} as const;
|