diff options
author | sanine-a <sanine.not@pm.me> | 2023-05-02 14:15:25 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2023-05-02 14:15:25 -0500 |
commit | e365e8c2fd4e3a595c696849734236008fc67e1f (patch) | |
tree | 072316b0ff99dd94d698090b6ad3b02ab7852d95 /conf/go.mod | |
parent | 9fe48ae66c2cc8d6b46e44ae35e9447ab51d9dd6 (diff) |
implement basic user operations
Diffstat (limited to 'conf/go.mod')
-rw-r--r-- | conf/go.mod | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/conf/go.mod b/conf/go.mod index 7349d9f..7ec1d45 100644 --- a/conf/go.mod +++ b/conf/go.mod @@ -4,9 +4,13 @@ go 1.19 replace sanine.net/git/phlox/db => ../db -require sanine.net/git/phlox/db v0.0.0-00010101000000-000000000000 +require ( + golang.org/x/term v0.7.0 + sanine.net/git/phlox/db v0.0.0-00010101000000-000000000000 +) require ( github.com/mattn/go-sqlite3 v1.14.16 // indirect golang.org/x/crypto v0.8.0 // indirect + golang.org/x/sys v0.7.0 // indirect ) |