mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import type { MetaResponse } from "./types";
|
|
import { f } from "./fetch";
|
|
|
|
export function getBackendMeta(url: string): Promise<MetaResponse> {
|
|
return f<MetaResponse>("/meta", {
|
|
baseUrl: url,
|
|
});
|
|
}
|