mirror of
https://git.stupid.fish/teidesu/scripts.git
synced 2025-07-27 18:22:10 +10:00
15 lines
556 B
TypeScript
15 lines
556 B
TypeScript
import { ffetch as ffetchBase } from '../../../utils/fetch.ts'
|
|
import { rateLimitBypass } from './_very-secret-ratelimit-bypass.ts'
|
|
|
|
export const ffetchShiki = ffetchBase.extend({
|
|
baseUrl: 'https://shikimori.one',
|
|
headers: {
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',
|
|
'Accept-Language': 'en-US,en;q=0.9',
|
|
'Accept-Encoding': 'gzip, deflate, br',
|
|
},
|
|
retry: {},
|
|
...(rateLimitBypass as any),
|
|
})
|
|
|
|
export { counterIter } from '../../../utils/counter.ts'
|