ignore init for setting

This commit is contained in:
Hayden 2024-03-02 12:32:09 -06:00
parent 7ff78530a2
commit cb949e6c86
No known key found for this signature in database
GPG key ID: 17CF79474E257545

View file

@ -22,7 +22,7 @@ var (
ErrorTokenIDMismatch = errors.New("token id mismatch") ErrorTokenIDMismatch = errors.New("token id mismatch")
) )
func init() { func init() { // nolint: gochecknoinits
easyemails.ImageLogoHeader = "https://raw.githubusercontent.com/hay-kot/homebox/af9aa239af66df17478f5ed9283e303daf7c6775/docs/docs/assets/img/homebox-email-banner.jpg" easyemails.ImageLogoHeader = "https://raw.githubusercontent.com/hay-kot/homebox/af9aa239af66df17478f5ed9283e303daf7c6775/docs/docs/assets/img/homebox-email-banner.jpg"
easyemails.ColorPrimary = "#5D7F67" easyemails.ColorPrimary = "#5D7F67"
} }