mirror of
https://github.com/h44z/wg-portal.git
synced 2025-09-15 07:11:15 +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
|
||
|
}
|