fix_: linter

This commit is contained in:
Igor Sirotin 2024-11-22 12:01:06 +00:00
parent 0f8103eab0
commit 0bdbfd6f89
No known key found for this signature in database
GPG Key ID: 425E227CAAB81F95
2 changed files with 2 additions and 3 deletions

View File

@ -11,7 +11,6 @@ import (
"go.uber.org/zap" "go.uber.org/zap"
"github.com/status-im/status-go/internal/sentry" "github.com/status-im/status-go/internal/sentry"
"github.com/status-im/status-go/logutils"
) )
var sensitiveKeys = []string{ var sensitiveKeys = []string{

View File

@ -13,8 +13,8 @@ type InitializeApplication struct {
MixpanelAppID string `json:"mixpanelAppId"` MixpanelAppID string `json:"mixpanelAppId"`
MixpanelToken string `json:"mixpanelToken"` MixpanelToken string `json:"mixpanelToken"`
// MediaServerEnableTLS is optional, if not provided, media server will use TLS by default // MediaServerEnableTLS is optional, if not provided, media server will use TLS by default
MediaServerEnableTLS *bool `json:"mediaServerEnableTLS"` MediaServerEnableTLS *bool `json:"mediaServerEnableTLS"`
SentryDSN string `json:"sentryDSN"` SentryDSN string `json:"sentryDSN"`
} }
func (i *InitializeApplication) Validate() error { func (i *InitializeApplication) Validate() error {