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