mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 01:14:03 +03:00
FILE / ScuroNeko/mtg
telegram/interfaces.go
Исходный файл и его история в репозитории.
9 lines
198 B
Go
9 lines
198 B
Go
package telegram
|
|
|
|
import "github.com/9seconds/mtg/conntypes"
|
|
|
|
type Telegram interface {
|
|
Dial(conntypes.DC, conntypes.ConnectionProtocol) (conntypes.StreamReadWriteCloser, error)
|
|
Secret() []byte
|
|
}
|