forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaxios.ts
More file actions
33 lines (29 loc) · 842 Bytes
/
axios.ts
File metadata and controls
33 lines (29 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import axios from "axios";
let api = axios.create({
baseURL: "https://api.github.com",
timeout: 1000,
responseType: "json",
headers: { "X-Custom-Header": "foobar" }
});
export default api;
export async function getRepo(owner: string, repo: string) {
api
.get(`/repos/${owner}/${repo}`)
.then((response) => {
console.log("Repository data:", response.data);
return response.data;
})
.catch((error) => {
console.error("Error fetching user:", error);
});
}
export async function updateUser(owner: string, repo: string, data: any) {
api
.patch(`/repos/${owner}/${repo}`, data)
.then((response) => {
console.log("User updated:", response.data);
})
.catch((error) => {
console.error("Error updating user:", error);
});
}