13 lines
195 B
Go
13 lines
195 B
Go
|
package audit
|
||
|
|
||
|
const (
|
||
|
SourceSelly = "selly"
|
||
|
)
|
||
|
|
||
|
// List actions
|
||
|
const (
|
||
|
ActionCreate = "create"
|
||
|
ActionUpdate = "update"
|
||
|
ActionUpdatePermissions = "update-permissions"
|
||
|
)
|