Merge remote-tracking branch 'origin/main' into LPM-77

This commit is contained in:
Robin Olsen
2026-02-25 14:18:04 +01:00
44 changed files with 2123 additions and 872 deletions

View File

@@ -22,5 +22,7 @@ func init() {
issuesCmd.RootCmd.AddCommand(issuesCmd.CreateCmd)
issuesCmd.RootCmd.AddCommand(issuesCmd.DeleteCmd)
issuesCmd.RootCmd.AddCommand(issuesCmd.UpdateCmd)
issuesCmd.RootCmd.AddCommand(issuesCmd.CommentCmd)
issuesCmd.RootCmd.AddCommand(issuesCmd.CommentsCmd)
issuesCmd.RootCmd.AddCommand(surveyCmd.StatusCmd)
}

View File

@@ -2,6 +2,8 @@ package main
import (
"context"
"fmt"
"os"
"github.com/LazyBachelor/LazyPM/internal/service"
"github.com/LazyBachelor/LazyPM/pkg/web"
@@ -9,6 +11,7 @@ import (
func main() {
if err := web.NewWeb().Run(context.Background(), service.BaseConfig); err != nil {
return
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(1)
}
}