Skip to content

Commit 145f7c9

Browse files
committed
fix: run gofmt
1 parent 0ba891d commit 145f7c9

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

cmd/exporter/config/config.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ type Config struct {
1010
ProjectID string
1111
Providers struct {
1212
AWS struct {
13-
Profile string
14-
Region string
15-
Services StringSliceFlag
16-
RoleARN string
17-
ExcludeRegions StringSliceFlag
18-
BedrockFamilyFilter string
13+
Profile string
14+
Region string
15+
Services StringSliceFlag
16+
RoleARN string
17+
ExcludeRegions StringSliceFlag
18+
BedrockFamilyFilter string
1919
}
2020
GCP struct {
2121
DefaultGCSDiscount int

pkg/aws/aws.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ import (
3737
)
3838

3939
type Config struct {
40-
Services []string
41-
Region string
42-
Profile string
43-
RoleARN string
44-
ExcludeRegions []string // AWS region names to skip (e.g. me-central-1)
45-
ScrapeInterval time.Duration
46-
CollectorTimeout time.Duration
47-
Logger *slog.Logger
48-
AccountID string
49-
BedrockFamilyFilter string // regex matched against family label; default "anthropic|amazon"
40+
Services []string
41+
Region string
42+
Profile string
43+
RoleARN string
44+
ExcludeRegions []string // AWS region names to skip (e.g. me-central-1)
45+
ScrapeInterval time.Duration
46+
CollectorTimeout time.Duration
47+
Logger *slog.Logger
48+
AccountID string
49+
BedrockFamilyFilter string // regex matched against family label; default "anthropic|amazon"
5050
}
5151

5252
type AWS struct {

0 commit comments

Comments
 (0)