mirror of
https://github.com/0xrsydn/idx-cli.git
synced 2026-08-07 01:33:52 +00:00
11 lines
103 B
Go
11 lines
103 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"rubick/internal/cli"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(cli.Run(os.Args[1:]))
|
|
}
|