CLI to mint RS256 customer JWTs for the YAMA License Server. Thin shell over licensing.Issue() in the YAMA Go server; consumed via local replace directive during development. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
18 lines
608 B
Modula-2
18 lines
608 B
Modula-2
module github.com/yuanyuanxiang/yama-issue-token
|
|
|
|
go 1.25.0
|
|
|
|
require github.com/yuanyuanxiang/SimpleRemoter/server/go v0.0.0
|
|
|
|
require (
|
|
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
|
|
github.com/klauspost/compress v1.18.2 // indirect
|
|
golang.org/x/sync v0.20.0 // indirect
|
|
golang.org/x/text v0.32.0 // indirect
|
|
)
|
|
|
|
// Resolve the YAMA module from the sibling checkout. Keeps this tool a
|
|
// thin shell over licensing.Issue() — when the licensing package's Issue
|
|
// validation changes, this tool inherits it without code churn.
|
|
replace github.com/yuanyuanxiang/SimpleRemoter/server/go => ../YAMA/server/go
|