Skip to content

Commit

Permalink
fixed module naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Binozo committed Dec 21, 2023
1 parent 69dfcf0 commit ca1ff9a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ This will generate the `main` executable file in the `build` directory.
package examples

import (
"EchoGoSDK/pkg/led"
"EchoGoSDK/pkg/mic"
"github.com/Binozo/EchoGoSDK/pkg/led"
"github.com/Binozo/EchoGoSDK/pkg/mic"
"bytes"
"fmt"
"time"
Expand Down
4 changes: 2 additions & 2 deletions examples/main.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package examples

import (
"EchoGoSDK/pkg/led"
"EchoGoSDK/pkg/mic"
"bytes"
"fmt"
"github.com/Binozo/EchoGoSDK/pkg/led"
"github.com/Binozo/EchoGoSDK/pkg/mic"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module EchoGoSDK
module github.com/Binozo/EchoGoSDK

go 1.20

Expand Down

0 comments on commit ca1ff9a

Please sign in to comment.