Add Models, Add Database
This commit is contained in:
parent
8f90344870
commit
faee833481
21 changed files with 407 additions and 1 deletions
10
entities/event/event.go
Normal file
10
entities/event/event.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
package event
|
||||
|
||||
type Event struct {
|
||||
Id string `json:"id,omitempty"`
|
||||
RoomId string `json:"roomId,omitempty"`
|
||||
EventType string `json:"eventType,omitempty"`
|
||||
Content string `json:"content,omitempty"`
|
||||
Parent string `json:"parent,omitempty"`
|
||||
Depth int `json:"depth,omitempty"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue