Files
user-system/internal/middleware/middleware_test.go

15 lines
346 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package middleware_test
import (
"testing"
)
// 此包测试文件为占位。
// 真实中间件Gin版本的测试位于 internal/api/middleware/ 包中。
// 此处仅保留包级别的基础测试,避免编译错误。
func TestMiddlewarePackageExists(t *testing.T) {
// 确认包可正常引用
t.Log("middleware package ok")
}