fix: linting errors
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 1m27s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 1m38s

This commit was merged in pull request #314.
This commit is contained in:
2025-10-07 18:09:53 +02:00
parent 278630f2e9
commit 65d70fd6df
3 changed files with 3 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ package middleware
import "net/http"
// Chain list of handlers together.
// Wrapper wraps a list of handlers together.
func Wrapper(next http.Handler, handlers ...func(http.Handler) http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
lastHandler := next

View File

@@ -6,7 +6,7 @@ import (
"github.com/google/uuid"
)
// At the center of the application is the transaction.
// Transaction is at the center of the application.
//
// Every piece of data should be calculated based on transactions.
// This means potential calculation errors can be fixed later in time.