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