15 lines
341 B
Go
15 lines
341 B
Go
package commands
|
|
|
|
import (
|
|
"gopkg.in/telebot.v3"
|
|
"me.thuanle/bbot/internal/configs"
|
|
"me.thuanle/bbot/internal/services/tele/chat"
|
|
"me.thuanle/bbot/internal/utils/netx"
|
|
)
|
|
|
|
func OnGetVersion(context telebot.Context) error {
|
|
ip := netx.GetPublicIp()
|
|
msg := "v" + configs.Version + " - " + ip
|
|
return chat.ReplyMessageCode(context, msg)
|
|
}
|