mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-05-21 15:16:55 +02:00
16 lines
363 B
Go
16 lines
363 B
Go
package audit
|
|
|
|
// Entry describes one platform audit record (not chat/tool execution bodies).
|
|
type Entry struct {
|
|
Level string
|
|
Category string
|
|
Action string
|
|
Result string // success | failure
|
|
Actor string
|
|
SessionHint string
|
|
ResourceType string
|
|
ResourceID string
|
|
Message string
|
|
Detail map[string]interface{}
|
|
}
|