mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +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
 | 
						|
}
 |