mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
15 lines
170 B
Go
15 lines
170 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/MerlinKodo/clash-rev/component/cli"
|
|
)
|
|
|
|
func main() {
|
|
app := cli.NewApp()
|
|
if err := app.Run(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|