1
0
Fork 0
mirror of https://github.com/imjasonh/cnotes synced 2026-07-07 00:33:04 +00:00
cnotes/main.go
Jason Hall 54d5cc1244
Remove git hooks and simplify notes pushing
- 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'
2025-07-21 22:29:33 -04:00

9 lines
110 B
Go

package main
import (
"github.com/imjasonh/cnotes/internal/commands"
)
func main() {
commands.Execute()
}