pgroll/main.go
Andrew Farries 813f95fe7d
Change module name (#60)
Change the module name to match its import path.

In order for `pg-roll` to be usable as a module we need the be able to
import `"github.com/xataio/pg-roll/pkg/roll"` etc from other modules.
Changing the name of the module to match its import path ensures that
this is possible.
2023-08-22 09:27:58 +01:00

14 lines
137 B
Go

package main
import (
"os"
"github.com/xataio/pg-roll/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}