e1e5f245e1
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
296 B
Go
18 lines
296 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"git.dcglab.co.uk/steve/emcli/internal/cli"
|
|
"git.dcglab.co.uk/steve/emcli/internal/version"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) >= 2 && os.Args[1] == "version" {
|
|
fmt.Println(version.String)
|
|
return
|
|
}
|
|
os.Exit(cli.Run(os.Args[1:], os.Stdout, os.Stderr))
|
|
}
|