Files
EdgeNode/internal/stats/user_agent_parser_result.go

15 lines
270 B
Go
Raw Normal View History

2022-01-01 21:47:59 +08:00
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
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
}