mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 20:56:20 +08:00
11 lines
166 B
Go
11 lines
166 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/Xhofe/alist/conf"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Favicon(c *gin.Context) {
|
|
c.Redirect(302, conf.GetStr("favicon"))
|
|
}
|