jorge/main.go
Facundo Olano adb17ad9d2
run linter in github actions (#20)
* run linter in github actions

* try fixing go mod

* no install go

* again

* maybe this?

* separate install

* no v

* fix lint errors
2024-02-29 19:34:33 -03:00

25 lines
693 B
Go

package main
import (
"github.com/alecthomas/kong"
"github.com/facundoolano/jorge/commands"
)
var cli struct {
Init commands.Init `cmd:"" help:"Initialize a new website project." aliases:"i"`
Build commands.Build `cmd:"" help:"Build a website project." aliases:"b"`
Post commands.Post `cmd:"" help:"Initialize a new post template file." aliases:"p"`
Serve commands.Serve `cmd:"" help:"Run a local server for the website." aliases:"s"`
Version kong.VersionFlag `short:"v"`
}
func main() {
ctx := kong.Parse(
&cli,
kong.UsageOnError(),
kong.HelpOptions{FlagsLast: true},
kong.Vars{"version": "jorge v0.2.1"},
)
err := ctx.Run()
ctx.FatalIfErrorf(err)
}