add stubs for NTCP

This commit is contained in:
Jeff Becker
2017-08-27 09:11:29 -04:00
parent 42c92a5a7e
commit a08790d3a7
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package ntcp
// Session implements TransportSession
// An established transport session
type Session struct {
}

View File

@ -0,0 +1,5 @@
package ntcp
// Transport is an ntcp transport implementing transport.Transport interface
type Transport struct {
}