fix: resolve compilation errors (missing log import and package conflicts)

This commit is contained in:
Tiago Ribeiro 2026-03-09 09:41:57 -03:00
parent 74e4ef1a99
commit 3a78c46bfc
4 changed files with 3 additions and 2 deletions

View file

@ -7,7 +7,6 @@ import (
"fmt" "fmt"
"net/http" "net/http"
"strconv" "strconv"
"strings"
"github.com/saveinmed/backend-go/internal/domain" "github.com/saveinmed/backend-go/internal/domain"
) )

View file

@ -1,4 +1,4 @@
package tests package payments
import ( import (
"math" "math"

View file

@ -3,6 +3,7 @@ package usecase
import ( import (
"context" "context"
"errors" "errors"
"fmt"
"math" "math"
"github.com/gofrs/uuid/v5" "github.com/gofrs/uuid/v5"

View file

@ -2,6 +2,7 @@ package usecase
import ( import (
"context" "context"
"log"
"time" "time"
"github.com/gofrs/uuid/v5" "github.com/gofrs/uuid/v5"