From 99a136b8b449e04ce32a2d518013ac12c7b2261d Mon Sep 17 00:00:00 2001 From: Jason Blais <13119842+jasonblais@users.noreply.github.com> Date: Tue, 30 Apr 2019 09:11:10 -0400 Subject: [PATCH] Add a link to plugin docs in sample plugin README (#38) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bfac7d..3aac232 100644 --- a/README.md +++ b/README.md @@ -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. +To learn more about plugins, see [our plugin documentation](https://developers.mattermost.com/extend/plugins/). + ## Getting Started 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 { return errors.Wrap(err, "failed to set profile image") } -``` \ No newline at end of file +```