package
Version:
v0.0.1
Opens a new window with list of versions in this module.
Published: May 20, 2024
License: GPL-2.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 Chatroom struct {
ID int64 `json:"id" db:"id"`
Chatroom string `json:"chatroom" db:"chatroom"`
}
type Message struct {
ID int64 `json:"id" db:"id"`
ChatroomId int64 `json:"chatroom_id" db:"chatroom_id"`
Username string `json:"username" db:"username"`
Payload string `json:"payload" db:"payload"`
CreatedAt time.Time `json:"created_at" db:"created_at"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.