You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
import ( |
|
"encoding/json" |
|
) |
|
|
|
// All const variable used in admin |
|
const ( |
|
ActFlushDM = "flush" |
|
ActReportDel = "report_del" |
|
) |
|
|
|
// Action job msg. |
|
type Action struct { |
|
Oid int64 `json:"oid"` |
|
Action string `json:"action"` |
|
Data json.RawMessage `json:"data"` |
|
}
|
|
|