forked from mirrors/gotosocial
8 lines
206 B
Go
8 lines
206 B
Go
package security
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// ExtraHeaders adds any additional required headers to the response
|
|
func (m *Module) ExtraHeaders(c *gin.Context) {
|
|
c.Header("Server", "gotosocial")
|
|
}
|