Files
EdgeNode/internal/stats/user_agent_parser_result.go

15 lines
265 B
Go
Raw Permalink Normal View History

2024-05-17 18:30:33 +08:00
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved.
2022-01-01 21:47:59 +08:00
package stats
2023-05-20 11:52:27 +08:00
import (
"github.com/mssola/useragent"
)
2022-01-01 21:47:59 +08:00
type UserAgentParserResult struct {
2023-05-20 11:52:27 +08:00
OS useragent.OSInfo
2022-01-06 17:05:04 +08:00
BrowserName string
BrowserVersion string
IsMobile bool
2022-01-01 21:47:59 +08:00
}