jenga/main.go

24 lines
458 B
Go
Raw Normal View History

2022-08-04 00:21:10 +00:00
/*
Jenga is a static site builder focused on single page blogs. It uses a TOML
file for configuration ( jenga.toml ). It expects your source files to be
written in standard Markdown with the extension .md
Usage:
jenga -config '/path/to/config'
The config flag is optional and if not recieved, jenga will look for the config
in the current directory
*/
2022-08-03 01:16:08 +00:00
package main
2022-08-03 22:17:58 +00:00
import (
"log"
)
2022-08-03 01:16:08 +00:00
func main() {
2022-08-03 22:17:58 +00:00
if err := run(); err != nil {
log.Fatal(err)
}
2022-08-03 01:16:08 +00:00
}