mirror of
https://github.com/foomo/posh.git
synced 2025-10-16 12:45:38 +00:00
14 lines
118 B
Go
14 lines
118 B
Go
package main
|
|
|
|
import (
|
|
"github.com/foomo/posh/cmd"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Init(nil)
|
|
}
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|