Skip to content

Commit

Permalink
Node: Renaming commands directory (valkey-io#1981)
Browse files Browse the repository at this point in the history
* Node: Renaming commands directory

Signed-off-by: TJ Zhang <[email protected]>
Co-authored-by: TJ Zhang <[email protected]>
  • Loading branch information
tjzhang-BQ and TJ Zhang authored Jul 19, 2024
1 parent 34e253c commit 4533298
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion node/src/BaseClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from "glide-rs";
import * as net from "net";
import { Buffer, BufferWriter, Reader, Writer } from "protobufjs";
import { LPosOptions } from "./command-options/LPosOptions";
import { LPosOptions } from "./commands/LPosOptions";
import {
AggregationType,
ExpireOptions,
Expand Down
2 changes: 1 addition & 1 deletion node/src/Commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import { createLeakedStringVec, MAX_REQUEST_ARGS_LEN } from "glide-rs";
import Long from "long";
import { LPosOptions } from "./command-options/LPosOptions";
import { LPosOptions } from "./commands/LPosOptions";

import { command_request } from "./ProtobufMessage";

Expand Down
2 changes: 1 addition & 1 deletion node/src/Transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
*/

import { LPosOptions } from "./command-options/LPosOptions";
import { LPosOptions } from "./commands/LPosOptions";
import {
AggregationType,
ExpireOptions,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion node/tests/SharedTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
intoString,
} from "./TestUtilities";
import { SingleNodeRoute } from "../build-ts/src/GlideClusterClient";
import { LPosOptions } from "../build-ts/src/command-options/LPosOptions";
import { LPosOptions } from "../build-ts/src/commands/LPosOptions";

async function getVersion(): Promise<[number, number, number]> {
const versionString = await new Promise<string>((resolve, reject) => {
Expand Down
2 changes: 1 addition & 1 deletion node/tests/TestUtilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
Transaction,
} from "..";
import { checkIfServerVersionLessThan } from "./SharedTests";
import { LPosOptions } from "../build-ts/src/command-options/LPosOptions";
import { LPosOptions } from "../build-ts/src/commands/LPosOptions";

beforeAll(() => {
Logger.init("info");
Expand Down

0 comments on commit 4533298

Please sign in to comment.