web: backend: Add CORS endpoints

This commit is contained in:
2025-11-11 10:48:36 -06:00
parent 49e4cdef59
commit 60fdf129a1
3 changed files with 27 additions and 10 deletions

View File

@@ -11,6 +11,7 @@ function jobs_test_usage()
received_job_id = []
function work_fn(job_id)
push!(received_job_id, job_id)
return
end
# Create processor with work function

View File

@@ -54,7 +54,7 @@ function server_test_usage()
@test view_data["solution"] !== nothing
# Clean up
rm(job_dir, recursive=true)
rm(job_dir, recursive = true)
finally
stop(server)
end