mirror of
https://github.com/click33/sa-token-go.git
synced 2026-04-22 23:37:07 +08:00
43da5f7fe3
Made-with: Cursor
24 lines
689 B
Modula-2
24 lines
689 B
Modula-2
module github.com/click33/sa-token-go/examples/redis-example
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/click33/sa-token-go/core v0.1.8
|
|
github.com/click33/sa-token-go/storage/redis v0.1.8
|
|
github.com/click33/sa-token-go/stputil v0.1.8
|
|
github.com/redis/go-redis/v9 v9.5.1
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/click33/sa-token-go/core => ../../core
|
|
github.com/click33/sa-token-go/storage/redis => ../../storage/redis
|
|
github.com/click33/sa-token-go/stputil => ../../stputil
|
|
)
|