File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ( ) ;
You canβt perform that action at this time.
0 commit comments