Add base for faketls

This commit is contained in:
9seconds
2019-11-04 16:07:20 +03:00
parent f531d90fc4
commit 1e428e13fc
7 changed files with 370 additions and 40 deletions
+10
View File
@@ -0,0 +1,10 @@
package faketls
import (
"github.com/9seconds/mtg/conntypes"
"github.com/9seconds/mtg/protocol"
)
func TelegramProtocol(req *protocol.TelegramRequest) (conntypes.StreamReadWriteCloser, error) {
return nil, nil
}