chore: remove trailing newlines across packages

This commit is contained in:
2026-05-26 16:17:48 +02:00
parent 5f4010901a
commit ff8f760750
6 changed files with 0 additions and 6 deletions

View File

@@ -9,4 +9,3 @@ import (
var Module = fx.Options( var Module = fx.Options(
fx.Provide(service.NewAuditService), fx.Provide(service.NewAuditService),
) )

View File

@@ -33,4 +33,3 @@ func RequestInfoFromContext(ctx context.Context) (ip string, userAgent string) {
} }
return ip, userAgent return ip, userAgent
} }

View File

@@ -5,4 +5,3 @@ import "go.uber.org/fx"
var Module = fx.Options( var Module = fx.Options(
fx.Provide(Load), fx.Provide(Load),
) )

View File

@@ -40,4 +40,3 @@ func acceptsHTML(c *gin.Context) bool {
} }
return false return false
} }

View File

@@ -149,4 +149,3 @@ func formatDate(dateStr string) string {
} }
return t.Format("Jan 2, 2006") return t.Format("Jan 2, 2006")
} }

View File

@@ -4,4 +4,3 @@ import "embed"
//go:embed *.gohtml anime/*.gohtml components/*.gohtml //go:embed *.gohtml anime/*.gohtml components/*.gohtml
var templateFS embed.FS var templateFS embed.FS