Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LoginRequestDto ¶
type LoginUserDto ¶
type Message ¶
type Message struct { ID uint `json:"id" gorm:"primaryKey" db:"id"` FkUser uint `json:"fk_user" db:"fk_user"` Content string `json:"content" db:"content"` Active bool `json:"active" db:"active"` CreatedAt time.Time `json:"created_at" db:"created_at"` UpdatedAt time.Time `json:"updated_at" db:"updated_at"` }
type MessageCreateDto ¶
type MessageCreateDto struct {
Content string `json:"content"`
}
type MessageResponseDto ¶
type PaginationDto ¶
type SuccessResponseDto ¶
type User ¶
type User struct { ID uint `json:"id" gorm:"primaryKey" db:"id"` Username string `json:"username" db:"username"` Password string `json:"password" db:"password"` Active bool `json:"active" db:"active"` CreatedAt time.Time `json:"created_at" db:"created_at"` UpdatedAt time.Time `json:"updated_at" db:"updated_at"` }
type UserCreateDto ¶
Click to show internal directories.
Click to hide internal directories.