FILE / ScuroNeko/mtg

client/client.go

Исходный файл и его история в репозитории.
FILE eb1b2ac6f1ce40eef4f427b329fff8e9a98e9fc7
Files
mtg/client/client.go
T
2018-07-09 16:11:05 +03:00

13 lines
305 B
Go

package client
import (
"net"
"github.com/9seconds/mtg/config"
"github.com/9seconds/mtg/mtproto"
"github.com/9seconds/mtg/wrappers"
)
// Init defines common method for initializing client connections.
type Init func(net.Conn, string, *config.Config) (wrappers.Wrap, *mtproto.ConnectionOpts, error)