FILE / ScuroNeko/mtg

telegram/interfaces.go

Исходный файл и его история в репозитории.
FILE 3816dbf5b1b85245f1f6cecc4c10c195f1af8c9f
Files
mtg/telegram/interfaces.go
T
2019-09-04 10:19:01 +03:00

16 lines
276 B
Go

package telegram
import (
"context"
"github.com/9seconds/mtg/conntypes"
"github.com/9seconds/mtg/wrappers"
)
type Telegram interface {
Dial(context.Context,
context.CancelFunc,
conntypes.DC,
conntypes.ConnectionProtocol) (wrappers.StreamReadWriteCloser, error)
}