mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-09 03:50:27 +08:00
13 lines
267 B
Go
13 lines
267 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package stats
|
|
|
|
import "github.com/mssola/user_agent"
|
|
|
|
type UserAgentParserResult struct {
|
|
OS user_agent.OSInfo
|
|
BrowserName string
|
|
BrowserVersion string
|
|
IsMobile bool
|
|
}
|