mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-08 03:00:26 +08:00
12 lines
256 B
Go
12 lines
256 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
//go:build community
|
||
|
|
// +build community
|
||
|
|
|
||
|
|
package accesslogs
|
||
|
|
|
||
|
|
// 写入日志
|
||
|
|
func (this *StorageManager) Write(policyId int64, accessLogs []*pb.HTTPAccessLog) error {
|
||
|
|
return nil
|
||
|
|
}
|