mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 05:39:39 +02:00
6 lines
131 B
JavaScript
6 lines
131 B
JavaScript
|
export class CurrenciesService {
|
||
|
get(id) {
|
||
|
return fetch(`/currencies/${id}.json`).then((response) => response.json());
|
||
|
}
|
||
|
}
|