Skip to content

Commit bc77748

Browse files
committed
Initial commit
Added all of the files
1 parent 5403ca9 commit bc77748

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

bin/Debug/api++.exe

512 Bytes
Binary file not shown.

main.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ int apiSys() {
6363
int fileSys();
6464
cout << "This application currently only supports GitHub's API system." << endl;
6565
cout << "For your own reference the base URL is https://api.github.com/" << endl;
66-
cout << "Choose whether you would like to embed a single repository or a list (found using filters). [R (single repo)/L (list of repos) ";
66+
cout << "Choose whether you would like to embed a single repository or a list (found using filters). [R (single repo)/L (list of repos) [FUTURE RELEASE] ";
6767
cin >> repoSearchType;
6868
if (repoSearchType == "R" || repoSearchType == "r") {
6969
cout << "Please type the owner of the repository you are trying to embed: ";
@@ -85,6 +85,10 @@ int apiSys() {
8585
cin >> repoDesc;
8686
return fileSys();
8787
}
88+
else {
89+
cout << "Sorry! The only option you have right now is to embed one repository at a time. Make sure to type R next time." << endl;
90+
return apiSys();
91+
}
8892
}
8993
int fileSys() {
9094
ofstream file;

obj/Debug/main.o

458 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)