Issue is the only place that signs. It records the licence, supersedes its predecessor and updates the instance -- but deliberately does not deliver. The ordering matters: a licence recorded but not delivered is recoverable, because the customer can download it. A licence delivered but not recorded is a support mystery with no paper trail. Free stays cloud-only through one comparison of plan against instance deployment, not a flag. Renewals reset relink_count because the cap is per term. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
25 lines
759 B
AMPL
25 lines
759 B
AMPL
module github.com/mrhid6/vantage/admin
|
|
|
|
go 1.26.4
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/mrhid6/vantage/shared v0.0.0-00010101000000-000000000000
|
|
go.mongodb.org/mongo-driver/v2 v2.8.0
|
|
)
|
|
|
|
require (
|
|
github.com/hyperboloide/lk v0.0.0-20251220053519-b291812e3216 // indirect
|
|
github.com/klauspost/compress v1.17.6 // indirect
|
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
|
github.com/xdg-go/scram v1.2.0 // indirect
|
|
github.com/xdg-go/stringprep v1.0.4 // indirect
|
|
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
|
|
golang.org/x/crypto v0.54.0 // indirect
|
|
golang.org/x/sync v0.22.0 // indirect
|
|
golang.org/x/text v0.40.0 // indirect
|
|
)
|
|
|
|
replace github.com/mrhid6/vantage/shared => ../shared
|