mirror of
https://github.com/twofas/2fas-server.git
synced 2024-12-12 12:09:56 +01:00
20 lines
472 B
Go
20 lines
472 B
Go
package domain
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type DebugLogsAuditClaimIsHasBeenExpiredError struct {
|
|
Id uuid.UUID
|
|
}
|
|
|
|
func (e DebugLogsAuditClaimIsHasBeenExpiredError) Error() string {
|
|
return "Debug logs audit claim has been expired " + e.Id.String()
|
|
}
|
|
|
|
type DebugLogsAuditClaimIsAlreadyCompletedError struct {
|
|
Id uuid.UUID
|
|
}
|
|
|
|
func (e DebugLogsAuditClaimIsAlreadyCompletedError) Error() string {
|
|
return "Debug logs audit claim has been completed " + e.Id.String()
|
|
}
|