1
0
forked from PGL/Clyde
Files
Clyde/frontend/src/rest/ScientificPublications/ResearcherProfile.js
2024-04-18 17:17:29 +02:00

13 lines
324 B
JavaScript

import { restGet, restPost, restDelete, restPatch } from '../restConsumer.js'
export async function fetchResearcher(id){
return restGet("/researcher/" + id)
}
export async function fetchResearches(id){
return restGet("/researches/" + id)
}
export async function fetchStats(id){
return restGet("/stats/" +id)
}