Add a link to plugin docs in sample plugin README (#38)

This commit is contained in:
Jason Blais 2019-04-30 09:11:10 -04:00 committed by Hanzei
parent 0acb31f8a7
commit 99a136b8b4

View file

@ -2,6 +2,8 @@
This plugin serves as a starting point for writing a Mattermost plugin. Feel free to base your own plugin off this repository. This plugin serves as a starting point for writing a Mattermost plugin. Feel free to base your own plugin off this repository.
To learn more about plugins, see [our plugin documentation](https://developers.mattermost.com/extend/plugins/).
## Getting Started ## Getting Started
Shallow clone the repository to a directory outside of `$GOPATH` matching your plugin name: Shallow clone the repository to a directory outside of `$GOPATH` matching your plugin name:
``` ```
@ -64,4 +66,4 @@ if err != nil {
if appErr := p.API.SetProfileImage(userID, profileImage); appErr != nil { if appErr := p.API.SetProfileImage(userID, profileImage); appErr != nil {
return errors.Wrap(err, "failed to set profile image") return errors.Wrap(err, "failed to set profile image")
} }
``` ```