Skip to content
Snippets Groups Projects

Resolve "Add comments to all files"

Merged Andrea Magnussen requested to merge 67-add-comments-to-all-files into master
2 files
+ 24
1
Compare changes
  • Side-by-side
  • Inline

Files

+ 8
1
import axios from "axios";
// Create axios client, pre-configured with baseURL
/**
* An instance of axios which is used everytime a network request is needed.
* @baseURL where the request should be sent to.
* @timeout how long the system will try to perform the request.
* @headers what type of data is accepted.
*
* @return the instance.
*/
let APIKit = axios.create({
baseURL: "http://192.168.0.30:5000",
timeout: 60000,
Loading