fix: update stale import paths in wiki documentation
pkg/framework/core -> pkg/core Co-Authored-By: Virgil <virgil@lethean.io>
parent
cdb7ab6108
commit
861f96ff37
2 changed files with 3 additions and 3 deletions
4
Home.md
4
Home.md
|
|
@ -14,7 +14,7 @@ go get forge.lthn.ai/core/go
|
|||
|
||||
| Package | Purpose |
|
||||
|---------|---------|
|
||||
| `pkg/framework/core` | DI container, service lifecycle, message bus |
|
||||
| `pkg/core` | DI container, service lifecycle, message bus |
|
||||
| `pkg/ws` | WebSocket hub for real-time streaming |
|
||||
| `pkg/webview` | Chrome DevTools Protocol client |
|
||||
| `pkg/process` | Process execution with streaming output |
|
||||
|
|
@ -46,7 +46,7 @@ go get forge.lthn.ai/core/go
|
|||
## Quick Start
|
||||
|
||||
```go
|
||||
import core "forge.lthn.ai/core/go/pkg/framework/core"
|
||||
import core "forge.lthn.ai/core/go/pkg/core"
|
||||
|
||||
c, err := core.New(
|
||||
core.WithService(NewMyService),
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ package myservice
|
|||
|
||||
import (
|
||||
"context"
|
||||
core "forge.lthn.ai/core/go/pkg/framework/core"
|
||||
core "forge.lthn.ai/core/go/pkg/core"
|
||||
)
|
||||
|
||||
type Options struct {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue