JungSeungHyun

correcterror

...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
12 "author": "Lee SeJin", 12 "author": "Lee SeJin",
13 "license": "MIT", 13 "license": "MIT",
14 "dependencies": { 14 "dependencies": {
15 + "type": "module",
15 "@babel/core": "^7.14.0", 16 "@babel/core": "^7.14.0",
16 "@babel/node": "^7.13.13", 17 "@babel/node": "^7.13.13",
17 "@babel/preset-env": "^7.14.1", 18 "@babel/preset-env": "^7.14.1",
......
...@@ -89,4 +89,9 @@ const getRepos = async(req,res) =>{ ...@@ -89,4 +89,9 @@ const getRepos = async(req,res) =>{
89 const secondRepoName = latelyRepos.[1].name; 89 const secondRepoName = latelyRepos.[1].name;
90 const firstRepoUrl = latelyRepos.[0].html_url; 90 const firstRepoUrl = latelyRepos.[0].html_url;
91 const secondRepoUrl = latelyRepos.[1].html_url; 91 const secondRepoUrl = latelyRepos.[1].html_url;
92 +}
93 +
94 +const getGHcontribution = async(req,res) =>{
95 + const url = api.github.com/repos/jshbest00/2020105657/commits;
96 + console.log(url);
92 } 97 }
...\ No newline at end of file ...\ No newline at end of file
......