15 lines
364 B
Go
15 lines
364 B
Go
package goboter
|
|
|
|
import "udico.de/uditaren/goboter/telegram"
|
|
|
|
//go:generate protoc -I proto/ proto/telegram.proto proto/telegram_response.proto proto/telegram_calls.proto --go_out=telegram
|
|
|
|
|
|
func NewTelegramBot(apikey, useragent string) *telegram.Bot {
|
|
return telegram.New(apikey, useragent)
|
|
}
|
|
|
|
// Mock!:q
|
|
func NewDiscordBot(token, useragent string) {
|
|
// dummy
|
|
} |