Updated all code examples to match core/go v0.8.0 implementation: - process.NewService → process.Register - process.RunWithOptions → c.Process().RunIn() - PERFORM removed from subsystem table - Startable/Stoppable return Result - Added Process, API, Action, Task, Entitled, RegistryOf to subsystem table New principles from validated session patterns: - Principle 8: RFC as Domain Load — load spec at session start - Principle 9: Primitives as Quality Gates — imports are the lint rule - Principle 10: Registration + Entitlement — two-layer permission model Co-Authored-By: Virgil <virgil@lethean.io>
29 lines
841 B
Modula-2
29 lines
841 B
Modula-2
module forge.lthn.ai/core/docs
|
|
|
|
go 1.26.0
|
|
|
|
require (
|
|
forge.lthn.ai/core/go-html v0.1.8
|
|
forge.lthn.ai/core/go-log v0.0.4
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/yuin/goldmark v1.7.16
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
dappco.re/go/core v0.5.0
|
|
dappco.re/go/core/api v0.2.0
|
|
dappco.re/go/core/i18n v0.2.0
|
|
dappco.re/go/core/io v0.2.0
|
|
dappco.re/go/core/log v0.1.0
|
|
dappco.re/go/core/process v0.3.0
|
|
dappco.re/go/core/scm v0.4.0
|
|
dappco.re/go/core/store v0.2.0
|
|
dappco.re/go/core/ws v0.3.0
|
|
forge.lthn.ai/core/go v0.3.3 // indirect
|
|
forge.lthn.ai/core/go-i18n v0.1.8 // indirect
|
|
forge.lthn.ai/core/go-inference v0.1.7 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
golang.org/x/text v0.35.0 // indirect
|
|
)
|