mirror of
https://github.com/httpjamesm/AnonymousOverflow.git
synced 2025-04-20 22:09:15 +00:00
15 lines
234 B
Go
15 lines
234 B
Go
|
package routes
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func StaticContent(c *gin.Context) {
|
||
|
cleanFilePath := strings.ReplaceAll(c.Param("filepath"), "..", "")
|
||
|
|
||
|
c.File(fmt.Sprintf("./public/%s", cleanFilePath))
|
||
|
}
|