From 75a37247eb90a94571fbc6a02c3940dcf6433278 Mon Sep 17 00:00:00 2001 From: CCheukKa Date: Thu, 18 Jul 2024 11:18:06 +0800 Subject: [PATCH] chore: Update import paths to src directory --- index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.ts b/index.ts index 2ed8a03..992bbbf 100644 --- a/index.ts +++ b/index.ts @@ -1,7 +1,7 @@ -import { QueryDirectoryResponseBody } from './lib/ApiTypes'; -import AuthHandler from './lib/AuthHandler'; -import FileHandler, { RemoteResourceData } from './lib/FileHandler'; -import PathArrayable, { PathArrayableType } from './lib/Path'; +import { QueryDirectoryResponseBody } from './src/ApiTypes'; +import AuthHandler from './src/AuthHandler'; +import FileHandler, { RemoteResourceData } from './src/FileHandler'; +import PathArrayable, { PathArrayableType } from './src/Path'; const noTokenError = new Error('No started session!'); @@ -22,7 +22,7 @@ export default class igemUploadToolApi { */ constructor(private teamNumber: number, private username: string, private password: string) { } - // ! public lib functions + // ! public src functions /** * Starts a new session by signing in the user with the provided username and password. * Authenticates the session after signing in to confirm session token is valid.