-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linting and unit testing pass; moving on to system testing
- Loading branch information
1 parent
477821a
commit c151f66
Showing
5 changed files
with
698 additions
and
574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,29 @@ | ||
export default { | ||
async get(url) { | ||
|
||
}, | ||
async getImage(url) { | ||
|
||
}, | ||
async getDownload(url, data) { | ||
|
||
}, | ||
async post(url, data) { | ||
|
||
}, | ||
async put(url, data) { | ||
|
||
}, | ||
async postLogin(url, data) { | ||
|
||
}, | ||
async delete(url) { | ||
|
||
}, | ||
async postForm(url, data) { | ||
|
||
}, | ||
async delete(url) { | ||
async putForm(url, data) { | ||
|
||
}, | ||
}; |
Oops, something went wrong.