fix Done func name in handler.go

This commit is contained in:
syumai 2024-11-08 02:37:16 +09:00
parent fc07f1d66e
commit 379d0120a9

View File

@ -34,6 +34,6 @@ func Ready() {
panic("Ready is not supported in non-JS environments") panic("Ready is not supported in non-JS environments")
} }
func WaitForCompletion() { func Done() <-chan struct{} {
panic("WaitForCompletion is not supported in non-JS environments") panic("Done is not supported in non-JS environments")
} }