mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-20 16:13:59 +08:00
13 lines
210 B
Go
13 lines
210 B
Go
package publicshare
|
|
|
|
func IsAPI(path string) bool {
|
|
switch path {
|
|
case "/api/v2/files/share/info",
|
|
"/api/v2/files/share/check",
|
|
"/api/v2/files/share/download":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|