优化部分代码,补充未实现功能

This commit is contained in:
dragon
2025-01-10 16:23:02 +08:00
parent 2f7fa13240
commit e663684a0a
9 changed files with 234 additions and 42 deletions

8
pkg/utils/reader.go Normal file
View File

@@ -0,0 +1,8 @@
package utils
import "io"
type SizeReadCloser struct {
io.ReadCloser
Size int
}