diff --git a/handler/rss/rss.go b/handler/rss/rss.go index 62a001a..9f365b2 100644 --- a/handler/rss/rss.go +++ b/handler/rss/rss.go @@ -19,8 +19,11 @@ func init() { db := sqlite3.GetGormDB() db.AutoMigrate(&RssFeed{}, &RssSubscribe{}) handler.RegisterAtHandler("订阅", Subscribe, constants.LEVEL_USER) + handler.RegisterHelpInform("@我 订阅 ", "rss", "订阅rss源") handler.RegisterAtHandler("我的订阅", MySubscribed, constants.LEVEL_USER) + handler.RegisterHelpInform("@我 我的订阅", "rss", "查看我的订阅") handler.RegisterAtHandler("退订", Unsubscribe, constants.LEVEL_USER) + handler.RegisterHelpInform("@我 退订 ", "rss", "退订rss源") //test handler.RegisterHandler("test_rss", TestRss, constants.LEVEL_ADMIN) }