package
Version:
v0.0.0-...-0d863c4
Opens a new window with list of versions in this module.
Published: Jun 22, 2024
License: GPL-3.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type ErrorResponse struct {
Error string `json:"error"`
}
type LoginPayload struct {
Email string `json:"email"`
Password string `json:"password"`
}
type Task struct {
ID int64 `json:"id"`
Name string `json:"name"`
Status string `json:"status"`
ProjectID int64 `json:"ProjectID"`
AssignedTo int64 `json:"AssignedTo"`
CreatedAt time.Time `json:"createdat"`
}
type User struct {
ID int64 `json:"id"`
Email string `json:"email"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
Password string `json:"password"`
CreatedAt time.Time `json:"createdat"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.