Skip to content

Commit

Permalink
Merge branch 'main' into feat/crowdfund-create
Browse files Browse the repository at this point in the history
  • Loading branch information
sepehr-dh99 authored Jan 3, 2025
2 parents d94a14d + 5f67882 commit ad0092d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ linters:
- sqlclosecheck
- stylecheck
- tagalign
# - tagliatelle
- tagliatelle
- tenv
- testableexamples
- thelper
Expand Down
2 changes: 2 additions & 0 deletions internal/entity/price.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ type Price struct {
AzbitPacToUSDT AzbitPriceResponse
}

//nolint:tagliatelle // External dependency
type XeggexPriceResponse struct {
LastPrice string `json:"lastPrice"`
YesterdayPrice string `json:"yesterdayPrice"`
Expand All @@ -19,6 +20,7 @@ type XeggexPriceResponse struct {
MarketCap float64 `json:"marketcapNumber"`
}

//nolint:tagliatelle // External dependency
type AzbitPriceResponse struct {
Timestamp int `json:"timestamp"`
CurrencyPairCode string `json:"currencyPairCode"`
Expand Down
1 change: 1 addition & 0 deletions pkg/utils/ip.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"strings"
)

//nolint:tagliatelle // External dependency
type GeoIP struct {
CountryName string `json:"country"`
RegionName string `json:"regionName"`
Expand Down

0 comments on commit ad0092d

Please sign in to comment.