diff --git a/internal/audit/module.go b/internal/audit/module.go index d9a71f6..60d7dfe 100644 --- a/internal/audit/module.go +++ b/internal/audit/module.go @@ -9,4 +9,3 @@ import ( var Module = fx.Options( fx.Provide(service.NewAuditService), ) - diff --git a/internal/auditctx/context.go b/internal/auditctx/context.go index 50db67a..9e9ac83 100644 --- a/internal/auditctx/context.go +++ b/internal/auditctx/context.go @@ -33,4 +33,3 @@ func RequestInfoFromContext(ctx context.Context) (ip string, userAgent string) { } return ip, userAgent } - diff --git a/internal/config/module.go b/internal/config/module.go index 7e7a967..a4b3425 100644 --- a/internal/config/module.go +++ b/internal/config/module.go @@ -5,4 +5,3 @@ import "go.uber.org/fx" var Module = fx.Options( fx.Provide(Load), ) - diff --git a/internal/server/respond.go b/internal/server/respond.go index 6a550db..f73d6b3 100644 --- a/internal/server/respond.go +++ b/internal/server/respond.go @@ -40,4 +40,3 @@ func acceptsHTML(c *gin.Context) bool { } return false } - diff --git a/templates/funcs.go b/templates/funcs.go index 7cc5864..715776b 100644 --- a/templates/funcs.go +++ b/templates/funcs.go @@ -149,4 +149,3 @@ func formatDate(dateStr string) string { } return t.Format("Jan 2, 2006") } - diff --git a/templates/template_fs.go b/templates/template_fs.go index 19c3999..b85250a 100644 --- a/templates/template_fs.go +++ b/templates/template_fs.go @@ -4,4 +4,3 @@ import "embed" //go:embed *.gohtml anime/*.gohtml components/*.gohtml var templateFS embed.FS -