Files
mir-godot/server/framework/utils/header.go

22 lines
494 B
Go
Raw Normal View History

2024-03-06 10:47:22 +08:00
/**
#*****************************************************************************
# @file header.go
# @author MakerYang(https://www.makeryang.com)
# @statement 免费课程配套开源项目任何形式收费均为盗版
#*****************************************************************************
*/
2024-03-03 22:59:18 +08:00
package Utils
import "strings"
func CheckUserAgent(userAgent string) bool {
Status := false
if strings.Contains(userAgent, "GodotEngine") {
Status = true
}
return Status
}