feature: Add YAML dependency to go.mod and go.sum

This commit is contained in:
Keith Solomon
2025-04-19 14:58:16 -05:00
parent 71af009bbf
commit 472aad6bc6
2 changed files with 7 additions and 1 deletions

5
go.mod
View File

@@ -2,4 +2,7 @@ module go-ssg
go 1.24.2
require github.com/russross/blackfriday/v2 v2.1.0 // indirect
require (
github.com/russross/blackfriday/v2 v2.1.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)