mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-04 17:20:19 +08:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
import axios from "axios";
|
|
|
|
/**
|
|
* A minimal Axios based fetcher.
|
|
*/
|
|
const fetcher = (url) => axios.get(url).then((res) => res.data);
|
|
|
|
export default fetcher;
|