mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 00:34:01 +03:00
FILE / ScuroNeko/mtg
telegram/interfaces.go
Исходный файл и его история в репозитории.
16 lines
276 B
Go
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)
|
|
}
|