oh-my-posh/src/main.go

12 lines
111 B
Go
Raw Normal View History

2019-03-13 04:14:30 -07:00
package main
import "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
}