Skip to content

Commit

Permalink
refactor: move getFileContent to src/file_functions and update import
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdanwan committed Sep 23, 2024
1 parent 2d01bfa commit 5876579
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/_gr.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// src/_gr.js

import program from './commanderProgram.js';
import getFileContent from './getFileContent.js';
import getFileContent from './file_functions/getFileContent.js';
import promptAI from './ai.js';
import defaultPrompt from './defaultPrompt.js';
import dotenv from 'dotenv';
Expand Down
2 changes: 1 addition & 1 deletion src/file_functions/getFileContent.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// src/getFileContent.js
// src/file_functions/getFileContent.js

import fs from 'fs';
import path from 'path';
Expand Down

0 comments on commit 5876579

Please sign in to comment.