mirror of
https://github.com/twofas/2fas-server.git
synced 2024-12-12 12:09:56 +01:00
24 lines
631 B
Go
24 lines
631 B
Go
|
package app
|
||
|
|
||
|
import (
|
||
|
"github.com/2fas/api/internal/api/support/app/command"
|
||
|
"github.com/2fas/api/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
|
||
|
}
|