mirror of
https://github.com/twofas/2fas-server.git
synced 2024-11-22 18:30:00 +01:00
24 lines
651 B
Go
24 lines
651 B
Go
package app
|
|
|
|
import (
|
|
"github.com/twofas/2fas-server/internal/api/support/app/command"
|
|
"github.com/twofas/2fas-server/internal/api/support/app/queries"
|
|
)
|
|
|
|
type Commands struct {
|
|
CreateDebugLogsAudit *command.CreateDebugLogsAuditHandler
|
|
CreateDebugLogsAuditClain *command.CreateDebugLogsAuditClaimHandler
|
|
UpdateDebugLogsAudit *command.UpdateDebugLogsAuditHandler
|
|
DeleteDebugLogsAudit *command.DeleteDebugLogsAuditHandler
|
|
DeleteAllDebugLogsAudit *command.DeleteAllDebugLogsAuditHandler
|
|
}
|
|
|
|
type Queries struct {
|
|
DebugLogsAuditQuery *queries.DebugLogsAuditQueryHandler
|
|
}
|
|
|
|
type Cqrs struct {
|
|
Commands Commands
|
|
Queries Queries
|
|
}
|