mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 14:19:49 +08:00
13 lines
330 B
Go
13 lines
330 B
Go
package modules
|
|
|
|
var (
|
|
Actions ResourceManager
|
|
)
|
|
|
|
func init() {
|
|
Actions = NewActionManager("action", "actions",
|
|
[]string{"id", "start_time", "service", "ops_time", "obj_id", "obj_type", "obj_name", "user", "user_id", "tenant", "tenant_id", "owner_tenant_id", "action", "success", "notes"},
|
|
[]string{})
|
|
register(&Actions)
|
|
}
|