header.go 494 B

123456789101112131415161718192021
  1. /**
  2. #*****************************************************************************
  3. # @file header.go
  4. # @author MakerYang(https://www.makeryang.com)
  5. # @statement 免费课程配套开源项目,任何形式收费均为盗版
  6. #*****************************************************************************
  7. */
  8. package Utils
  9. import "strings"
  10. func CheckUserAgent(userAgent string) bool {
  11. Status := false
  12. if strings.Contains(userAgent, "GodotEngine") {
  13. Status = true
  14. }
  15. return Status
  16. }