mirror of
https://github.com/Pull-Pal/pull-pal.git
synced 2024-11-03 01:38:33 -04:00
b9b0b9cf12
Implement cobra and stuff Right now there is just one root command You can set a config file, or pass flags in via CLI Haven't figured out how to use env variables yet But if you run the root command, It'll check the repo for issues, and generate an LLM prompt You can copy-paste it to the LLM chat, then copy-paste the response to a different file Then press enter in the CLI tool, and it will parse the response and open a PR with the change
8 lines
86 B
Go
8 lines
86 B
Go
package main
|
|
|
|
import "github.com/mobyvb/pull-pal/cmd"
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|