croc/src/webrtc/pkg/session/session.go

8 lines
182 B
Go

package session
// Session defines a common interface for sender and receiver sessions
type Session interface {
// Start a connection and starts the file transfer
Start() error
}