aboutsummaryrefslogtreecommitdiff
path: root/docs/gui-design.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gui-design.md')
-rw-r--r--docs/gui-design.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/gui-design.md b/docs/gui-design.md
index 602368f..dd65c95 100644
--- a/docs/gui-design.md
+++ b/docs/gui-design.md
@@ -18,11 +18,11 @@ same log, that `krino log` and `krino undo` see.
### 1.1 Where the code lives
-- A nested Go module `krino/gui` in `gui/`, with its own `go.mod`
- (`github.com/diamondburned/gotk4/pkg` v0.4.1, and `replace krino => ../`),
- building one binary, `krino-gui`. It imports `krino/internal/...`, which
- Go allows because the import path is under `krino` (verified with a probe
- module, 2026-09-15).
+- A nested Go module `git.labunix.xyz/krino/gui` in `gui/`, with its own
+ `go.mod` (`github.com/diamondburned/gotk4/pkg`, and a `replace` pointing
+ at `../`), building one binary, `krino-gui`. It imports
+ `git.labunix.xyz/krino/internal/...`, which Go allows because the import
+ path is under the parent module's.
- krino's own module, `make ci` and its dependency gate are unchanged:
`go list ./...` at the root does not include `gui/`.
- `make gui` builds `krino-gui` with `CGO_ENABLED=1`; `make gui-ci` runs