fixed a bug that stopped sessions from being deleted

This commit is contained in:
Gregory Wells
2026-03-25 10:20:20 -04:00
parent ffb4077f24
commit f491c80fa0
3 changed files with 18 additions and 3 deletions

View File

@@ -9,6 +9,7 @@ type EventType int
const (
ReadFile EventType = iota
AuthenticateUser
)
func Info(message string) {
@@ -58,5 +59,10 @@ func Event(eventType EventType, eventData ...any) {
log.Printf("Reading file %s", eventData[0])
break
}
case AuthenticateUser:
{
log.Printf("Authenticating user %s", eventData[0])
break
}
}
}