1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02:00

add models

This commit is contained in:
Zack Scholl 2019-11-12 15:49:35 -08:00
parent 6534e6fda6
commit d24b6e62dd

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
}