mirror of
https://github.com/imjasonh/cnotes
synced 2026-07-07 00:33:04 +00:00
- Remove pre-push and post-commit hooks - Remove examples directory with hook examples - Update README to recommend git config for automatic notes pushing - Restructure commands from cmd/ to internal/commands/ - Git now configured to push notes automatically with: git config --add remote.origin.push '+refs/notes/claude-conversations:refs/notes/claude-conversations'
9 lines
110 B
Go
9 lines
110 B
Go
package main
|
|
|
|
import (
|
|
"github.com/imjasonh/cnotes/internal/commands"
|
|
)
|
|
|
|
func main() {
|
|
commands.Execute()
|
|
}
|