mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-08 15:08:14 -07:00
18 lines
210 B
Go
18 lines
210 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/gabehf/koito/engine"
|
|
)
|
|
|
|
func main() {
|
|
if err := engine.Run(
|
|
os.Getenv,
|
|
os.Stdout,
|
|
); err != nil {
|
|
fmt.Fprintf(os.Stderr, "%s\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|