oh-my-posh/src/main.go

12 lines
137 B
Go
Raw Normal View History

2019-03-13 04:14:30 -07:00
package main
2022-12-28 08:30:48 -08:00
import "github.com/jandedobbeleer/oh-my-posh/cli"
var (
Version = "development"
)
2020-11-19 16:53:09 -08:00
2019-03-13 04:14:30 -07:00
func main() {
cli.Execute(Version)
2019-03-13 04:14:30 -07:00
}