Files
OpenList/server/controllers/other.go

11 lines
166 B
Go
Raw Normal View History

2022-02-08 18:07:13 +08:00
package controllers
import (
"github.com/Xhofe/alist/conf"
"github.com/gin-gonic/gin"
)
func Favicon(c *gin.Context) {
c.Redirect(302, conf.GetStr("favicon"))
}