add models

This commit is contained in:
Zack Scholl 2019-11-12 15:49:35 -08:00
parent 6534e6fda6
commit d24b6e62dd
1 changed files with 7 additions and 0 deletions

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

@ -0,0 +1,7 @@
package models
// WebsocketMessage contains the websocket messsage and payload
type WebsocketMessage struct {
Message string
Payload string
}