From 6caf654af9d471a2314799803eb4408b66803dcc Mon Sep 17 00:00:00 2001 From: Robin Olsen Date: Thu, 5 Feb 2026 13:24:24 +0100 Subject: [PATCH] add variable to service config to store rootcmd name --- internal/service/service.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/internal/service/service.go b/internal/service/service.go index 344ac92..c6afc25 100644 --- a/internal/service/service.go +++ b/internal/service/service.go @@ -1,16 +1,18 @@ package service import ( - "github.com/LazyBachelor/LazyPM/internal/models" - "github.com/LazyBachelor/LazyPM/internal/storage" "context" "time" + "github.com/LazyBachelor/LazyPM/internal/models" + "github.com/LazyBachelor/LazyPM/internal/storage" + "github.com/google/uuid" "github.com/steveyegge/beads" ) type Config struct { + RootCmd string WebAddress string BeadsDBPath string IssuePrefix string