Generate QR code

This commit is contained in:
Khanh Ngo 2020-04-18 21:42:53 +07:00
parent 59e1a9e377
commit c4e846ccd4
No known key found for this signature in database
GPG key ID: D5FAA6A16150E49E
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
}