注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
package main import ( "fmt" "github.com/c-bata/go-prompt" ) func completer(in prompt.Document) []... package main import ( "fmt" "github.com/c-bata/go-prompt" ) func completer(in prompt.Document) []prompt.Suggest { s := []prompt.Suggest{ {Text: "users", Description: "Store the username and age"}, {Text: "articles", Description: "Store the article text posted by user"}, {Text: "comments", Description: "Store the text commented to articles"}, {Text: "groups", Description: "Combine users with specif
2017/08/26 リンク