Skip to content

Commit a5d1604

Browse files
committed
fix: fix .gitignore, add cmd/gitx
Signed-off-by: Ayush <mail@ayuch.dev>
1 parent 541eead commit a5d1604

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ go.work.sum
3131
.idea/
3232
.vscode/
3333

34-
gitx
35-
gitx.exe
34+
/gitx
35+
/gitx.exe

cmd/gitx/main.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package main
2+
3+
import (
4+
"log"
5+
6+
"github.com/gitxtui/gitx/internal/tui"
7+
)
8+
9+
func main() {
10+
app := tui.NewApp()
11+
if err := app.Run(); err != nil {
12+
log.Fatalf("Error running application: %v", err)
13+
}
14+
}

0 commit comments

Comments
 (0)