mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 07:50:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			391 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			391 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
 | 
						|
//go:build !plus
 | 
						|
 | 
						|
package services
 | 
						|
 | 
						|
import "github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
 | 
						|
 | 
						|
func (this *HTTPAccessLogService) canWriteAccessLogsToDB() bool {
 | 
						|
	return true
 | 
						|
}
 | 
						|
 | 
						|
func (this *HTTPAccessLogService) writeAccessLogsToPolicy(pbAccessLogs []*pb.HTTPAccessLog) error {
 | 
						|
	return nil
 | 
						|
}
 |