Skip to content

Commit

Permalink
Adapt dumper to api changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Jul 17, 2023
1 parent dbb074c commit 1ec1d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/nudumper/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"io/ioutil"
"log"
"nuga/pkg/keyboard"
"nuga/pkg/light"
"os"
)

Expand Down Expand Up @@ -40,7 +40,7 @@ func main() {
os.Exit(1)
}
outFile := os.Args[1]
k, err := keyboard.OpenHardware()
k, err := light.OpenHardware()
if err != nil {
log.Panicf("Couldn't open keyboard: %v", err)
}
Expand Down

0 comments on commit 1ec1d10

Please sign in to comment.