mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
15 lines
392 B
Go
15 lines
392 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@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
|
|
}
|