Add git implementation of task manager

Change-Id: I1e0925e54fa167af9459eceea7a2cae082bc4504
diff --git a/server/go.mod b/server/go.mod
index 621072a..d2079f1 100644
--- a/server/go.mod
+++ b/server/go.mod
@@ -3,11 +3,16 @@
 go 1.24.4
 
 require (
+	github.com/google/uuid v1.6.0
 	github.com/joho/godotenv v1.5.1
 	github.com/spf13/cobra v1.9.1
+	github.com/stretchr/testify v1.10.0
+	gopkg.in/yaml.v3 v3.0.1
 )
 
 require (
+	github.com/davecgh/go-spew v1.1.1 // indirect
 	github.com/inconshreveable/mousetrap v1.1.0 // indirect
+	github.com/pmezard/go-difflib v1.0.0 // indirect
 	github.com/spf13/pflag v1.0.6 // indirect
 )