mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 23:54:03 +03:00
FILE / ScuroNeko/mtg
faketls/telegram_protocol.go
Исходный файл и его история в репозитории.
11 lines
217 B
Go
11 lines
217 B
Go
package faketls
|
|
|
|
import (
|
|
"github.com/9seconds/mtg/conntypes"
|
|
"github.com/9seconds/mtg/protocol"
|
|
)
|
|
|
|
func TelegramProtocol(req *protocol.TelegramRequest) (conntypes.StreamReadWriteCloser, error) {
|
|
return nil, nil
|
|
}
|