mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 12:44:02 +03:00
FILE / ScuroNeko/mtg
protocol/request.go
Исходный файл и его история в репозитории.
20 lines
380 B
Go
20 lines
380 B
Go
package protocol
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/9seconds/mtg/conntypes"
|
|
"github.com/9seconds/mtg/wrappers"
|
|
)
|
|
|
|
type TelegramRequest struct {
|
|
Logger *zap.SugaredLogger
|
|
ClientConn wrappers.StreamReadWriteCloser
|
|
ConnID conntypes.ConnID
|
|
Ctx context.Context
|
|
Cancel context.CancelFunc
|
|
ClientProtocol ClientProtocol
|
|
}
|