From 7469ead8ebc4ff2133236406ab9b0d91f34e762a Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Sun, 6 Aug 2023 14:54:21 -0400 Subject: [PATCH] wasm: fix type of a internal no-op server api --- pkg/api/serve_wasm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/serve_wasm.go b/pkg/api/serve_wasm.go index ab952d4196f..bdae0383e5a 100644 --- a/pkg/api/serve_wasm.go +++ b/pkg/api/serve_wasm.go @@ -14,7 +14,7 @@ func (*internalContext) Serve(ServeOptions) (ServeResult, error) { type apiHandler struct { } -func (*apiHandler) broadcastBuildResult(BuildResult, buildSummary) { +func (*apiHandler) broadcastBuildResult(BuildResult, map[string]string) { } func (*apiHandler) stop() {