separate beads viewer into its own app

This commit is contained in:
Robin Olsen
2026-02-03 16:41:29 +01:00
parent f4b34c393f
commit 93128cb072
3 changed files with 59 additions and 53 deletions

View File

@@ -1,8 +1,9 @@
package tui
import (
"github.com/LazyBachelor/LazyPM/internal/service"
"context"
"github.com/LazyBachelor/LazyPM/internal/service"
)
type TUIConfig = service.Config
@@ -15,4 +16,5 @@ func Run(ctx context.Context, config TUIConfig) error {
defer cleanup()
return nil
}