()
| 9 | class ApiService { |
| 10 | base: AxiosInstance |
| 11 | constructor() { |
| 12 | this.base = axios.create({ |
| 13 | // baseURL: "http://localhost:8080", |
| 14 | baseURL: "https://burly-note-production.up.railway.app", |
| 15 | headers: { |
| 16 | Authorization: "Bearer QYT8s1NavSTpTAxURji98Fpg", |
| 17 | }, |
| 18 | }) |
| 19 | } |
| 20 | |
| 21 | signin(props: any) { |
| 22 | return new Promise((resolve, reject) => { |
nothing calls this directly
no outgoing calls
no test coverage detected