1
0
mirror of https://github.com/ascribe/onion.git synced 2024-09-28 03:58:55 +02:00
onion/js/fetchers/piece_fetcher.js

17 lines
278 B
JavaScript

'use strict';
import requests from '../utils/requests';
let PieceFetcher = {
/**
* Fetch one user from the API.
* If no arg is supplied, load the current user
*/
fetchOne() {
return requests.get('piece');
}
};
export default PieceFetcher;