mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
15 lines
270 B
Go
15 lines
270 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package stats
|
|
|
|
import (
|
|
"github.com/mssola/useragent"
|
|
)
|
|
|
|
type UserAgentParserResult struct {
|
|
OS useragent.OSInfo
|
|
BrowserName string
|
|
BrowserVersion string
|
|
IsMobile bool
|
|
}
|