Skip to content

Commit 3a45538

Browse files
committed
chore: add cmd/doplan/main.go to repository
- Main entry point for DoPlan CLI - Required for building binaries in release workflow - File was missing from git repository
1 parent 38e813b commit 3a45538

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

cmd/doplan/main.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package main
2+
3+
import (
4+
"github.com/doplan/cli/internal/cli"
5+
)
6+
7+
func main() {
8+
// DoPlan CLI - Entry point
9+
// Execute the root Cobra command
10+
cli.Execute()
11+
}
12+

0 commit comments

Comments
 (0)