Skip to content

Commit e8c9be3

Browse files
committed
gofmt
1 parent 1aa8b20 commit e8c9be3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

internal/backend/store/store.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ type Store struct {
5252
svixClient *svix.Svix
5353
auditlogStore *auditlogstore.Store
5454
oidc *oidcclient.Client
55-
riverClient *river.Client[pgx.Tx]
55+
riverClient *river.Client[pgx.Tx]
5656
}
5757

5858
type NewStoreParams struct {
@@ -80,7 +80,7 @@ type NewStoreParams struct {
8080
SvixClient *svix.Svix
8181
AuditlogStore *auditlogstore.Store
8282
OIDCClient *oidcclient.Client
83-
RiverClient *river.Client[pgx.Tx]
83+
RiverClient *river.Client[pgx.Tx]
8484
}
8585

8686
func New(p NewStoreParams) *Store {
@@ -111,7 +111,7 @@ func New(p NewStoreParams) *Store {
111111
svixClient: p.SvixClient,
112112
auditlogStore: p.AuditlogStore,
113113
oidc: p.OIDCClient,
114-
riverClient: p.RiverClient,
114+
riverClient: p.RiverClient,
115115
}
116116

117117
return store

internal/intermediate/store/store.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type Store struct {
4343
googleOAuthClient *googleoauth.Client
4444
microsoftOAuthClient *microsoftoauth.Client
4545
userContentBaseUrl string
46-
riverClient *river.Client[pgx.Tx]
46+
riverClient *river.Client[pgx.Tx]
4747
s3UserContentBucketName string
4848
stripeClient *stripeclient.API
4949
svixClient *svix.Svix
@@ -76,7 +76,7 @@ type NewStoreParams struct {
7676
GoogleOAuthClient *googleoauth.Client
7777
MicrosoftOAuthClient *microsoftoauth.Client
7878
UserContentBaseUrl string
79-
RiverClient *river.Client[pgx.Tx]
79+
RiverClient *river.Client[pgx.Tx]
8080
S3UserContentBucketName string
8181
StripeClient *stripeclient.API
8282
SvixClient *svix.Svix
@@ -115,7 +115,7 @@ func New(p NewStoreParams) *Store {
115115
microsoftOAuthClientSecretsKMS: p.MicrosoftOAuthClientSecretsKMS,
116116
authenticatorAppSecretsKMS: p.AuthenticatorAppSecretsKMS,
117117
userContentBaseUrl: p.UserContentBaseUrl,
118-
riverClient: p.RiverClient,
118+
riverClient: p.RiverClient,
119119
s3UserContentBucketName: p.S3UserContentBucketName,
120120
stripeClient: p.StripeClient,
121121
svixClient: p.SvixClient,

0 commit comments

Comments
 (0)