mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
16 lines
529 B
Go
16 lines
529 B
Go
package doc
|
|
|
|
const BuiltinProxyUrl = "/proxy/i.pximg.net" // built-in proxy route
|
|
|
|
// the list of proxies on /settings
|
|
var BuiltinProxyList = []string{
|
|
// !!!! WE ARE NOT AFFILIATED WITH MOST OF THE PROXIES !!!!
|
|
"https://pximg.exozy.me", // except this one. this one we are affiliated with.
|
|
"https://pixiv.ducks.party",
|
|
"https://pximg.cocomi.eu.org",
|
|
"https://mima.localghost.org/proxy/pximg",
|
|
"https://i.pixiv.re",
|
|
// "https://pixiv.tatakai.top", // dead due to us :(
|
|
// "https://pximg.chaotic.ninja", // incompatible
|
|
}
|