mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 23:03:57 +08:00
11 lines
255 B
Go
11 lines
255 B
Go
package consts
|
|
|
|
type ReportAction string
|
|
|
|
const (
|
|
ReportActionAccept ReportAction = "accept"
|
|
ReportActionSuggest ReportAction = "suggest"
|
|
ReportActionFileWritten ReportAction = "file_written"
|
|
ReportActionReject ReportAction = "reject"
|
|
)
|