Created
September 24, 2019 16:03
-
-
Save phuctm97/46b876952e68b2d8dbc8c9f114703e0a to your computer and use it in GitHub Desktop.
Go RESTful Series
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package users | |
// User holds a user's data. | |
type User struct { | |
Username string | |
Email string | |
FullName string | |
Bio string | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment