Cosmos-Server/client/src/api/market.ts

14 lines
201 B
TypeScript
Raw Normal View History

2023-06-09 18:48:31 +00:00
import wrap from './wrap';
function list() {
return wrap(fetch('/cosmos/api/markets', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
},
}))
}
export {
list,
};