From dd790ca6c1a5b187922415325a2cc2c66e033214 Mon Sep 17 00:00:00 2001 From: Ian P Badtrousers Date: Thu, 10 Feb 2022 14:10:19 +0100 Subject: [PATCH] README: getting rid of past import path artifacts --- README.md | 4 ++-- telebot.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8900a7d..060a70d 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Simple, innit? Telebot's routing system takes care of delivering updates to their endpoints, so in order to get to handle any meaningful event, all you got to do is just plug your function into one of the Telebot-provided endpoints. You can find the full list -[here](https://godoc.org/gopkg.in/tucnak/telebot.v3#pkg-constants). +[here](https://godoc.org/gopkg.in/telebot.v3#pkg-constants). There are dozens of supported endpoints (see package consts). Let me know if you'd like to see some endpoint or endpoint ideas implemented. This system @@ -292,7 +292,7 @@ b.Send(user, "text", tele.Silent, tele.NoPreview) ``` Full list of supported option-flags you can find -[here](https://pkg.go.dev/gopkg.in/tucnak/telebot.v3#Option). +[here](https://pkg.go.dev/gopkg.in/telebot.v3#Option). ## Editable If you want to edit some existing message, you don't really need to store the diff --git a/telebot.go b/telebot.go index 1d828fb..b5cb932 100644 --- a/telebot.go +++ b/telebot.go @@ -6,7 +6,7 @@ // // import ( // "time" -// tele "gopkg.in/tucnak/telebot.v3" +// tele "gopkg.in/telebot.v3" // ) // // func main() {