16 lines
207 B
Go
16 lines
207 B
Go
|
package api
|
||
|
|
||
|
type RollDataID string
|
||
|
|
||
|
type RollDataReq struct {
|
||
|
Sender string
|
||
|
ID RollDataID
|
||
|
TimeStamp string
|
||
|
}
|
||
|
|
||
|
type RollDataRes struct {
|
||
|
ID RollDataID
|
||
|
TimeStamp string
|
||
|
RollData any
|
||
|
}
|