Skip to content

Commit

Permalink
Support go install
Browse files Browse the repository at this point in the history
  • Loading branch information
kiootic committed Jun 13, 2023
1 parent 80c8464 commit 4992b79
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package main

import (
"os"

"github.com/oursky/pageship/cmd/pageship/app"
)

func main() {
if err := app.Execute(); err != nil {
app.Error("%s", err)
os.Exit(1)
}
}

0 comments on commit 4992b79

Please sign in to comment.