initial Auth implementation (#44)

* initial implementation

* update api url
This commit is contained in:
Kurt Hutten
2023-03-06 18:18:01 +11:00
committed by GitHub
parent 4c554b6549
commit 176d2d6394
6 changed files with 54 additions and 3 deletions

4
src/lib/withBaseURL.ts Normal file
View File

@ -0,0 +1,4 @@
export default function withBaseUrl(path: string): string {
const baseUrl = 'https://dev.api.kittycad.io'
return baseUrl + path
}