Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
MetalBlueberry committed Dec 13, 2020
1 parent a7956df commit 340b538
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 182 deletions.
7 changes: 4 additions & 3 deletions cmd/book/main.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
package main

import (
"github.com/MetalBlueberry/chkb/pkg/chkb"
"log"
"os"

"github.com/MetalBlueberry/chkb/pkg/chkb"

evdev "github.com/gvalkov/golang-evdev"
)

func main() {
book := chkb.Config{
config := chkb.Config{
Layers: map[string]*chkb.Layer{
"base": {
KeyMap: chkb.KeyMap{
Expand All @@ -26,7 +27,7 @@ func main() {
},
}

err := book.Save(os.Stdout)
err := config.Save(os.Stdout)
if err != nil {
log.Println(err)
}
Expand Down
179 changes: 0 additions & 179 deletions cmd/chkb/main.go

This file was deleted.

0 comments on commit 340b538

Please sign in to comment.