mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 05:24:02 +03:00
FILE / ScuroNeko/mtg
client/client.go
Исходный файл и его история в репозитории.
11 lines
152 B
Go
11 lines
152 B
Go
package client
|
|
|
|
import (
|
|
"io"
|
|
"net"
|
|
|
|
"github.com/9seconds/mtg/config"
|
|
)
|
|
|
|
type Init func(net.Conn, *config.Config) (int16, io.ReadWriteCloser, error)
|