Skip to content

Commit cec7d35

Browse files
committed
πŸ‘Œ IMPROVE: order
1 parent 4c23a2f commit cec7d35

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

β€Žutils/options.jsβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ module.exports = async () => {
1010
io.write(
1111
chalk.green("\nEnter any option: \n") +
1212
chalk.yellow(
13-
"1. Get Email of any GitHub User\n2. Get Stargazers of any GitHub Repo\n3. Open an Issue in any GitHub Repo\n4. Create a GitHub Repo\n5. Exit\n\n"
13+
"1. Create a GitHub Repo \n2. Open an Issue in any GitHub Repo \n3. Get Email of any GitHub User\n4. Get Stargazers of any GitHub Repo\n5. Exit\n\n"
1414
)
1515
);
1616
io.write(chalk.green("> Enter the option number: "));
1717
const option = await io.read();
1818

1919
switch (option) {
2020
case "1":
21-
email();
21+
repo();
2222
break;
2323
case "2":
24-
stars();
24+
issue();
2525
break;
2626
case "3":
27-
issue();
27+
email();
2828
break;
2929
case "4":
30-
repo();
30+
stars();
3131
break;
3232
case "5":
3333
exit();

0 commit comments

Comments
Β (0)