本文整理汇总了Golang中github.com/requilence/integram.Context类的典型用法代码示例。如果您正苦于以下问题:Golang Context类的具体用法?Golang Context怎么用?Golang Context使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Context类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: commitsReplied
func commitsReplied(c *integram.Context, baseURL string, projectID int, commits []commit) error {
authorized, err := mustBeAuthed(c)
if err != nil {
return err
}
if !authorized {
//todo:bug message lost
return c.User.SetAfterAuthAction(commitsReplied, baseURL, projectID, commits)
}
buttons := integram.Buttons{}
for _, commit := range commits {
buttons.Append(commit.ID, trim(commit.Message, 40))
}
return c.NewMessage().
SetText(c.User.Mention()+" please specify commit to comment").
SetKeyboard(buttons.Markup(1), true).
EnableForceReply().
SetReplyAction(commitToReplySelected, baseURL, projectID, c.Message).
Send()
}
开发者ID:Requilence,项目名称:integram,代码行数:25,代码来源:gitlab.go
示例2: prText
func prText(c *integram.Context, pr *api.PullRequest) string {
r := reRepoFullNameFromURL.FindStringSubmatch(pr.Links.Self.Href)
repo := ""
if len(r) == 2 {
repo = r[1]
}
if pr.Description == pr.Title {
pr.Description = ""
}
text := fmt.Sprintf("%s %s\n%s",
m.Bold(pr.Title),
m.URL("➔", c.WebPreview("Pull Request", repo, "by "+pr.Author.DisplayName, pr.Links.HTML.String(), "")),
pr.Description)
if len(pr.Reviewers) > 0 {
text += "\n
|
请发表评论