zhangzengfei
2022-10-18 a13b0a9f5ea78270c4c614865407442748e349be
api.go
@@ -52,8 +52,8 @@
}
// 遍历数据, 输出原始数据
func (ls *LogStore) ForEach(f func(v *LogCon) error) {
   ls.store.ForEach(f)
func (ls *LogStore) ForEach(f func(v *LogCon) error) error {
   return ls.store.ForEach(f)
}
func (ls *LogStore) Size() int {