package
Version:
v0.0.0-...-023eac5
Opens a new window with list of versions in this module.
Published: Nov 24, 2021
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Booking struct {
Id int `json:"booking_id" db:"id"`
RoomId int `json:"-" db:"room_id"`
DateStart time.Time `json:"date_start" db:"date_start"`
DateEnd time.Time `json:"date_end" db:"date_end"`
}
type Room struct {
Id int `json:"room_id" db:"id"`
Description string `json:"description" db:"description"`
Price int `json:"price" db:"price"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.