Files
cameradar/server/actor/server.go
T
Brendan LE GLAUNEC 5d2626b639 Change license to MIT
2018-03-12 15:04:06 +01:00

8 lines
153 B
Go

package actor
// Server is a generic interface for creating a bidirectional
// communication server through websocket.
type Server interface {
Run()
}