1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

Heartbeat Insertions.

Restructuring.
This commit is contained in:
Ferdinand Mütsch
2019-05-06 00:40:41 +02:00
parent 6e7f47dc79
commit 9df289b7ed
8 changed files with 110 additions and 22 deletions

5
models/shared.go Normal file
View File

@ -0,0 +1,5 @@
package models
const (
UserKey = "user"
)

6
models/user.go Normal file
View File

@ -0,0 +1,6 @@
package models
type User struct {
UserId string `json:"id"`
ApiKey string `json:"api_key"`
}