2025-03-29 16:42:31 +01:00
|
|
|
package audit
|
|
|
|
|
|
|
|
|
|
import "github.com/h44z/wg-portal/internal/domain"
|
|
|
|
|
|
|
|
|
|
type AuthEvent struct {
|
|
|
|
|
Username string
|
|
|
|
|
Error string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type InterfaceEvent struct {
|
|
|
|
|
Interface domain.Interface
|
|
|
|
|
Action string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type PeerEvent struct {
|
|
|
|
|
Peer domain.Peer
|
|
|
|
|
Action string
|
|
|
|
|
}
|