包含Go API项目的所有源代码、配置文件、Docker配置、文档和前端资源 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
293 B
Go
17 lines
293 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Cache() func(c *gin.Context) {
|
|
return func(c *gin.Context) {
|
|
if c.Request.RequestURI == "/" {
|
|
c.Header("Cache-Control", "no-cache")
|
|
} else {
|
|
c.Header("Cache-Control", "max-age=604800") // one week
|
|
}
|
|
c.Next()
|
|
}
|
|
}
|