mirror of
https://github.com/danog/gojekyll.git
synced 2025-01-22 23:21:16 +01:00
17 lines
202 B
Go
17 lines
202 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/osteele/gojekyll/commands"
|
|
)
|
|
|
|
func main() {
|
|
err := commands.ParseAndRun(os.Args[1:])
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
}
|