Generate QR code

This commit is contained in:
Khanh Ngo
2020-04-18 21:42:53 +07:00
parent 59e1a9e377
commit c4e846ccd4
6 changed files with 77 additions and 12 deletions

View File

@@ -17,3 +17,9 @@ type Client struct {
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
// ClientData includes the Client and extra data
type ClientData struct {
Client *Client
QRCode string
}