init project

This commit is contained in:
juancwu 2026-01-28 15:10:25 +00:00
commit 05d83c52c3
4 changed files with 116 additions and 0 deletions

13
internal/cli/cli.go Normal file
View file

@ -0,0 +1,13 @@
package cli
import "git.juancwu.dev/juancwu/forgejo-cli/internal/config"
type Model struct{}
func New(cfg *config.Config) *Model {
return &Model{}
}
func (m *Model) Run() error {
return nil
}