diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-07-30 19:05:09 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-07-30 19:05:09 +0900 |
| commit | db0721e9820f399727b933088a276184e9565c9d (patch) | |
| tree | 4cde08ad2fc675bbbfbfab544738fd070293ea74 /backend/go.mod | |
| parent | 61bf8dc35b82d0afd0263c0b6c37c2cfe5961a19 (diff) | |
| download | phperkaigi-2025-albatross-db0721e9820f399727b933088a276184e9565c9d.tar.gz phperkaigi-2025-albatross-db0721e9820f399727b933088a276184e9565c9d.tar.zst phperkaigi-2025-albatross-db0721e9820f399727b933088a276184e9565c9d.zip | |
feat(backend): implement password-based authentication
Diffstat (limited to 'backend/go.mod')
| -rw-r--r-- | backend/go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/go.mod b/backend/go.mod index 8cb206d..eba1726 100644 --- a/backend/go.mod +++ b/backend/go.mod @@ -12,6 +12,7 @@ require ( github.com/oapi-codegen/oapi-codegen/v2 v2.3.0 github.com/oapi-codegen/runtime v1.1.1 github.com/sqlc-dev/sqlc v1.26.0 + golang.org/x/crypto v0.23.0 ) require ( @@ -63,7 +64,6 @@ require ( go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.26.0 // indirect - golang.org/x/crypto v0.23.0 // indirect golang.org/x/exp v0.0.0-20231108232855-2478ac86f678 // indirect golang.org/x/mod v0.17.0 // indirect golang.org/x/net v0.25.0 // indirect |
