13 lines
256 B
Go
13 lines
256 B
Go
package commands
|
|
|
|
import (
|
|
"gopkg.in/telebot.v3"
|
|
"me.thuanle/bbot/internal/services/tele/chat"
|
|
"me.thuanle/bbot/internal/utils/netx"
|
|
)
|
|
|
|
func OnGetIp(context telebot.Context) error {
|
|
ip := netx.GetPublicIp()
|
|
return chat.ReplyMessageCode(context, ip)
|
|
}
|