- 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)
14 lines
228 B
Go
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()
|
|
}
|