Files
workload-service/lib/workload_service/aggregates/quote_task.ex
HaimKortovich ca86980833
All checks were successful
Build and Publish / build-release (push) Successful in 1m28s
add dialyzer and fix id
2026-04-21 14:26:37 -05:00

11 lines
241 B
Elixir

defmodule WorkloadService.Aggregates.QuoteTask do
use WorkloadService.Aggregates.Task,
task_type: "quote",
commands: WorkloadService.Commands.QuoteTask,
submission_type: map()
def validate_submission(_) do
:ok
end
end