8 lines
131 B
Go
8 lines
131 B
Go
package domain
|
|
|
|
type Bot struct {
|
|
ID int64 `json:"id"`
|
|
BotName string `json:"bot_name"`
|
|
Created int64 `json:"created"`
|
|
}
|