FILE / ScuroNeko/mtg

telegram/interfaces.go

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

17 lines
293 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)
Secret() []byte
}