mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-22 22:57:17 -04:00
10 lines
212 B
Go
10 lines
212 B
Go
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
|
// See LICENSE.txt for license information.
|
||
|
|
|
||
|
|
package app
|
||
|
|
|
||
|
|
type MentionParser interface {
|
||
|
|
ProcessText(text string)
|
||
|
|
Results() *MentionResults
|
||
|
|
}
|