Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuditLog ¶
type AuditLog struct {
ID int `db:"id"`
Timestamp string `db:"timestamp"` // store as RFC3339 string; parse in API layer if needed
Level string `db:"level"`
Actor string `db:"actor"`
Action string `db:"action"`
IP string `db:"ip"`
Details string `db:"details"` // JSON or plain text (we store a string)
}
type RadioEvent ¶
type RadioEvent struct {
ID int `db:"id"`
Timestamp string `db:"timestamp"` // store as RFC3339 string; parse in API layer if needed
Protocol string `db:"protocol"`
MessageType string `db:"message_type"`
Direction string `db:"direction"`
LocalAddress string `db:"local_address"`
RemoteAddress string `db:"remote_address"`
Raw []byte `db:"raw"`
Details string `db:"details"` // JSON or plain text (we store a string)
}
Click to show internal directories.
Click to hide internal directories.