package models import "time" type Device struct { ID int64 `json:"id"` DeviceID string `json:"device_id"` Expiration time.Time `json:"expiration"` }