Skip to content

Commit

Permalink
Refer to forked repo instead of original repo
Browse files Browse the repository at this point in the history
  • Loading branch information
b4shful committed Jun 11, 2024
1 parent 292bbb5 commit 8b89a91
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion enumerator/example_getdetailedportlist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"
"log"

"go.bug.st/serial/enumerator"
"github.com/b4shful/go-serial/enumerator"
)

func ExampleGetDetailedPortsList() {
Expand Down
2 changes: 1 addition & 1 deletion enumerator/usb_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"os"
"path/filepath"

"go.bug.st/serial"
"github.com/b4shful/go-serial"
)

func nativeGetDetailedPortsList() ([]*PortDetails, error) {
Expand Down
2 changes: 1 addition & 1 deletion example_getportlist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"
"log"

"go.bug.st/serial"
"github.com/b4shful/go-serial"
)

func ExampleGetPortsList() {
Expand Down
2 changes: 1 addition & 1 deletion example_modem_bits_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"log"
"time"

"go.bug.st/serial"
"github.com/b4shful/go-serial"
)

func ExampleGetSetModemBits() {
Expand Down
2 changes: 1 addition & 1 deletion example_serialport_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"fmt"
"log"

"go.bug.st/serial"
"github.com/b4shful/go-serial"
)

func ExampleSerialPort_SetMode() {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"log"
"strings"

"go.bug.st/serial"
"github.com/b4shful/go-serial"
)

// This example prints the list of serial ports and use the first one
Expand Down
2 changes: 1 addition & 1 deletion portlist/portlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"fmt"
"log"

"go.bug.st/serial/enumerator"
"github.com/b4shful/go-serial/enumerator"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion serial_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"sync/atomic"
"time"

"go.bug.st/serial/unixutils"
"github.com/b4shful/go-serial/unixutils"
"golang.org/x/sys/unix"
)

Expand Down

0 comments on commit 8b89a91

Please sign in to comment.