Skip to content

Commit ba55c4d

Browse files
authored
Merge pull request nine-lives-later#3 from mafzst/master
Add dummy package for Linux and Darwin
2 parents 5c8c8bd + 3ee688d commit ba55c4d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

sequence_dummy.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// +build linux darwin
2+
3+
package sequences
4+
5+
import (
6+
"fmt"
7+
)
8+
9+
func EnableVirtualTerminalProcessing() error {
10+
return fmt.Errorf("windows only package")
11+
}

0 commit comments

Comments
 (0)