mirror of
https://github.com/h44z/wg-portal.git
synced 2025-04-19 08:55:12 +00:00
19 lines
267 B
Go
19 lines
267 B
Go
|
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
|
||
|
}
|