Skip to content

Commit

Permalink
✨ add entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
budougumi0617 committed Jan 10, 2021
1 parent 2bb62d9 commit e538b74
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cmd/nrseg/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package main

import (
"os"

"github.com/budougumi0617/nrseg"
)

func main() {
if err := nrseg.Run(os.Args, os.Stdout, os.Stderr); err != nil {
os.Exit(1)
}
}

0 comments on commit e538b74

Please sign in to comment.