diff options
| author | 2025-07-30 20:58:44 +0700 | |
|---|---|---|
| committer | 2025-07-30 20:58:44 +0700 | |
| commit | 924c717ed86c9f6fa23973d8b36cc2b3904ebb4c (patch) | |
| tree | 03345edbadc6426961b4501568315601d6114e30 /go.mod | |
| parent | 68d671127bd03c019081599d069810a81f871095 (diff) | |
| download | articlator-924c717ed86c9f6fa23973d8b36cc2b3904ebb4c.tar.gz articlator-924c717ed86c9f6fa23973d8b36cc2b3904ebb4c.zip | |
feat: basic metadata extractor
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +module github.com/SayaAndy/saya-today-article-metadata-add + +go 1.24.5 + +require ( + github.com/Backblaze/blazer v0.7.2 // indirect + github.com/gabriel-vasile/mimetype v1.4.8 // indirect + github.com/go-playground/locales v0.14.1 // indirect + github.com/go-playground/universal-translator v0.18.1 // indirect + github.com/go-playground/validator/v10 v10.27.0 // indirect + github.com/leodido/go-urn v1.4.0 // indirect + golang.org/x/crypto v0.33.0 // indirect + golang.org/x/net v0.34.0 // indirect + golang.org/x/sys v0.30.0 // indirect + golang.org/x/text v0.22.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) |