2021-05-15 11:58:11 +02:00
|
|
|
package security
|
|
|
|
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
|
|
|
|
// ExtraHeaders adds any additional required headers to the response
|
|
|
|
func (m *Module) ExtraHeaders(c *gin.Context) {
|
2021-06-24 14:26:08 +02:00
|
|
|
c.Header("Server", "gotosocial")
|
2021-05-15 11:58:11 +02:00
|
|
|
}
|