FILE / ScuroNeko/mtg

telegram/interfaces.go

Исходный файл и его история в репозитории.
FILE 691954bd16d8fc5c0c0b5be9540f3c5e2a341088
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)
}