feat: add init command and setup db

This commit is contained in:
2025-09-22 21:13:17 +05:30
parent 1847b1795d
commit 13702d117a
7 changed files with 157 additions and 17 deletions

13
cmd/utils/tools.go Normal file
View File

@@ -0,0 +1,13 @@
package utils
import (
"fmt"
"github.com/charmbracelet/lipgloss"
)
var ErrStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("#F00"))
func ErrPrint(data string) {
fmt.Println(ErrStyle.Render(data))
}