Skip to content

Commit d41322b

Browse files
committed
Fix imports
Signed-off-by: Rémy Léone <[email protected]>
1 parent c92dc76 commit d41322b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

term_webassembly.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33

44
package term
55

6-
import "io"
7-
import "os"
8-
import "errors"
6+
import (
7+
"errors"
8+
"io"
9+
"os"
10+
"syscall/js"
11+
)
912

1013
// terminalState holds the platform-specific state / console mode for the terminal.
1114
type terminalState struct{}

0 commit comments

Comments
 (0)