Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DB *sql.DB
Functions ¶
func DBDisconnect ¶
func DBDisconnect()
Types ¶
type Job ¶
type Job struct {
ID *int `json:"id" db:"id"`
Title string `json:"title" db:"title"`
Description string `json:"description" db:"description"`
CompanyName string `json:"companyName" db:"companyName"`
PostedOn *time.Time `json:"postedOn" db:"postedOn"`
PostedBy int `json:"postedBy" db:"postedBy"`
TotalApplicants int `json:"totalApplicants" db:"totalApplicants"`
}
type Profile ¶
type Profile struct {
ID *int `json:"id" db:"id"`
ResumeFileAddress *string `json:"resumeFileAddress" db:"resumeFileAddress"`
Skills *string `json:"skills" db:"skills"`
Education *string `json:"education" db:"education"`
Experience *string `json:"experience" db:"experience"`
Name string `json:"name" db:"name"`
Email string `json:"email" db:"email"`
Phone *string `json:"phone" db:"phone"`
}
Click to show internal directories.
Click to hide internal directories.