Some checks are pending
/ test (push) Waiting to run
Step one: Copy the struct definitions over into a new, dedicated submodule Step two: Make a generator script Step three: Define helper functions for various queries
10 lines
128 B
Go
10 lines
128 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Reaction struct {
|
|
gorm.Model
|
|
NoteId string
|
|
ReactorId string
|
|
EmoteId uint
|
|
}
|