feat(rubick): rename project and add production release bundle

This commit is contained in:
Muhammad Firas 2026-03-06 03:12:28 +07:00
commit fab6cf26eb
No known key found for this signature in database
33 changed files with 11554 additions and 0 deletions

11
main.go Normal file
View file

@ -0,0 +1,11 @@
package main
import (
"os"
"rubick/internal/cli"
)
func main() {
os.Exit(cli.Run(os.Args[1:]))
}