initial commit for bookish-server and local environment

This commit is contained in:
David Thompson
2020-05-26 00:30:20 -04:00
parent d634e9d00f
commit 2bc790c87b
48 changed files with 15860 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
package bookish_server
// Renter is an entity in the Bookish API wish rents books.
type Renter struct {
ID int `db:"id" json:"id"`
Name string `db:"name" json:"name"`
Address string `db:"address" json:"address"`
Email string `db:"email" json:"email"`
PhoneNumber string `db:"phone_number" json:"phoneNumber"`
}