blob: f77581da56ae5088c25c24d54b8f70fff4f98d83 (
plain)
1
2
3
4
5
6
7
8
|
const API_KEY = '8216fbb9997cd81a67471e6cb5a6f2df'
const requests = {
fetchTopRated: `/movie/top_rated?api_key=${API_KEY}`,
fetchTrending: `/trending/movie/day?api_key=${API_KEY}`,
}
export default requests
|