Skip to content

Commit 5a4a594

Browse files
committed
Fix with prettier
1 parent df1083f commit 5a4a594

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

api/pkg/services/message_service.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ type ServiceAttachment struct {
3131
// MessageService is handles message requests
3232
type MessageService struct {
3333
service
34-
logger telemetry.Logger
35-
tracer telemetry.Tracer
36-
eventDispatcher *EventDispatcher
37-
phoneService *PhoneService
38-
repository repositories.MessageRepository
34+
logger telemetry.Logger
35+
tracer telemetry.Tracer
36+
eventDispatcher *EventDispatcher
37+
phoneService *PhoneService
38+
repository repositories.MessageRepository
3939
attachmentRepository repositories.AttachmentRepository
4040
apiBaseURL string
4141
}

api/pkg/validators/message_handler_validator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ func NewMessageHandlerValidator(
4848
}
4949

5050
const (
51-
maxAttachmentCount = 10
52-
maxAttachmentSize = (3 * 1024 * 1024) / 2 // 1.5 MB per attachment
51+
maxAttachmentCount = 10
52+
maxAttachmentSize = (3 * 1024 * 1024) / 2 // 1.5 MB per attachment
5353
maxTotalAttachmentSize = 3 * 1024 * 1024 // 3 MB total
5454
)
5555

0 commit comments

Comments
 (0)