add models

This commit is contained in:
Zack Scholl 2018-10-22 19:42:39 -07:00
parent ea9aa3f8ec
commit e5fcc0d3ee
1 changed files with 7 additions and 0 deletions

7
src/croc/models.go Normal file
View File

@ -0,0 +1,7 @@
package croc
type WebSocketMessage struct {
messageType int
message []byte
err error
}