清理代码

This commit is contained in:
dragon
2025-09-25 11:57:23 +08:00
parent 9a425a057e
commit 92c0f73020
13 changed files with 92 additions and 74 deletions

9
pkg/utils/closer.go Normal file
View File

@@ -0,0 +1,9 @@
package utils
import "io"
type NopCloser struct {
io.ReadSeeker
}
func (NopCloser) Close() error { return nil }