This repository has been archived on 2021-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
gpm/main.go
John Olheiser ef0d29afa3 Rewrite (#7)
Closes #6

This is, more or less, a fundamental rewrite of gpm.

Co-authored-by: jolheiser <john.olheiser@gmail.com>
Reviewed-on: #7
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
Co-committed-by: John Olheiser <john.olheiser@gmail.com>
2021-02-28 13:04:05 +08:00

16 lines
176 B
Go

package main
import (
"os"
"go.jolheiser.com/gpm/cmd"
"go.jolheiser.com/beaver"
)
func main() {
if err := cmd.New().Run(os.Args); err != nil {
beaver.Error(err)
}
}