FILE / ScuroNeko/mtg

telegram/interfaces.go

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