mirror of
https://github.com/click33/sa-token-go.git
synced 2026-04-22 23:37:07 +08:00
43da5f7fe3
Made-with: Cursor
23 lines
622 B
Modula-2
23 lines
622 B
Modula-2
module github.com/click33/sa-token-go/examples/multi-certification
|
|
|
|
go 1.25.3
|
|
|
|
require (
|
|
github.com/click33/sa-token-go/core v0.1.8
|
|
github.com/click33/sa-token-go/storage/memory v0.1.8
|
|
github.com/click33/sa-token-go/stputil v0.1.8
|
|
)
|
|
|
|
require (
|
|
github.com/golang-jwt/jwt/v5 v5.3.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/panjf2000/ants/v2 v2.11.3 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/click33/sa-token-go/core => ../../core
|
|
github.com/click33/sa-token-go/storage/memory => ../../storage/memory
|
|
github.com/click33/sa-token-go/stputil => ../../stputil
|
|
)
|