Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatyana-js committed Oct 11, 2023
1 parent 4974516 commit 22a8e47
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/brain-calc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node

import calcGame from '../src/calc.js';
import calcGame from '../games/calc.js';

calcGame();
2 changes: 1 addition & 1 deletion bin/brain-even.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node

import startGame from '../src/game.js';
import startGame from '../games/game.js';

startGame();
2 changes: 1 addition & 1 deletion src/calc.js → games/calc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import readlineSync from 'readline-sync';

import greetGamer from './cli.js';
import greetGamer from '../src/cli.js';

import getRandomInt from '../function/getRandomInt.js';

Expand Down
File renamed without changes.

0 comments on commit 22a8e47

Please sign in to comment.