diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-09-28 09:48:40 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-09-28 09:48:40 -0700 |
| commit | 04821a6e7752d6852bc1d283a88f05f7abecae87 (patch) | |
| tree | 667266ce89224443831cb21d4d9e94cd6ce48c3d /go.mod | |
| parent | 768d3629b938196d132b80864204d7b6a9683a9e (diff) | |
| download | roseh.moe-04821a6e7752d6852bc1d283a88f05f7abecae87.tar.zst | |
Add a gob API
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -2,6 +2,16 @@ module gitlab.com/rhogenson/roseh.moe go 1.24.0 -require golang.org/x/term v0.35.0 +require ( + github.com/google/subcommands v1.2.0 + golang.org/x/term v0.35.0 +) -require golang.org/x/sys v0.36.0 // indirect +require ( + golang.org/x/mod v0.28.0 // indirect + golang.org/x/sync v0.17.0 // indirect + golang.org/x/sys v0.36.0 // indirect + golang.org/x/tools v0.37.0 // indirect +) + +tool golang.org/x/tools/cmd/stringer |
