16 lines
365 B
Go
16 lines
365 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
//go:build plus
|
|
|
|
package nodes
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAPI/internal/accesslogs"
|
|
"github.com/TeaOSLab/EdgeAPI/internal/goman"
|
|
)
|
|
|
|
func (this *APINode) startAccessLogStorages() {
|
|
goman.New(func() {
|
|
accesslogs.SharedStorageManager.Start()
|
|
})
|
|
}
|