unarr/cmd/unarr/main.go
Deivid Soto 5a7449b9e6 chore: rename module from torrentclaw-cli to unarr
- Rename Go module path github.com/torrentclaw/torrentclaw-cli → github.com/torrentclaw/unarr
- Update all imports, ldflags, scripts, docs, and Docker config
- Add GitHub Actions release workflow (goreleaser on tag push)
2026-03-30 13:06:07 +02:00

14 lines
228 B
Go

package main
import (
"github.com/torrentclaw/unarr/internal/cmd"
"github.com/torrentclaw/unarr/internal/sentry"
)
func main() {
sentry.Init(cmd.Version)
defer sentry.Close()
defer sentry.RecoverPanic()
cmd.Execute()
}