mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-14 00:06:02 -05:00
* updated default bot image * Update bot_default_icon.png * go:embed a copy of the new bot default icon * updated bot avatar used for e2e tests --------- Co-authored-by: Jesse Hallam <jesse@mattermost.com>
11 lines
293 B
Go
11 lines
293 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package users
|
|
|
|
import _ "embed"
|
|
|
|
// This embed duplicates ../../../../webapp/channels/src/images/bot_default_icon.png
|
|
//
|
|
//go:embed bot_default_icon.png
|
|
var botDefaultImage []byte
|