Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ make coverage # generate HTML coverage report
### Project structure

```
cmd/clipx/ CLI entry point (commands, LaunchAgent management)
clipx/
clipboard.go Clipboard abstraction (pbcopy/pbpaste)
config.go Config file (~/.config/clipx/config.json)
net.go Network utilities (DNS resolution, ping)
node.go Core daemon (listener, clipboard watcher, peer sync)
protocol.go Wire protocol (encode/decode messages & chunks)
*_test.go Tests
cmd/clipx/ CLI entry point (commands, LaunchAgent management)
internal/clipx/
clipboard.go Clipboard abstraction (pbcopy/pbpaste)
config.go Config file (~/.config/clipx/config.json)
net.go Network utilities (DNS resolution, ping)
node.go Core daemon (listener, clipboard watcher, peer sync)
protocol.go Wire protocol (encode/decode messages & chunks)
*_test.go Tests
```

### Running locally
Expand Down
2 changes: 1 addition & 1 deletion cmd/clipx/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"text/template"
"time"

"github.com/gomantics/clipx/clipx"
"github.com/gomantics/clipx/internal/clipx"
)

var version = "dev"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading