Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardDowling committed Jan 9, 2025
1 parent 8f5f7a5 commit 7e79e3e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions integrations/access/msteams/bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ func NewBot(c *Config, clusterName, webProxyAddr string, log *slog.Logger) (*Bot
}

bot := &Bot{
Config: c.MSAPI,
graphClient: msapi.NewGraphClient(c.MSAPI),
botClient: msapi.NewBotFrameworkClient(c.MSAPI),
fullRecipients: make(map[string]common.Recipient),
webProxyURL: webProxyURL,
clusterName: clusterName,
mu: &sync.RWMutex{},
log: log,
StatusSink: c.StatusSink,
Config: c.MSAPI,
graphClient: msapi.NewGraphClient(c.MSAPI),
botClient: msapi.NewBotFrameworkClient(c.MSAPI),
fullRecipients: make(map[string]common.Recipient),
webProxyURL: webProxyURL,
clusterName: clusterName,
mu: &sync.RWMutex{},
log: log,
StatusSink: c.StatusSink,
}

return bot, nil
Expand Down

0 comments on commit 7e79e3e

Please sign in to comment.