diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-09-16 08:24:54 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-09-16 08:24:54 +0200 |
| commit | 4f98392c9a062e9d4dd8363a2ede9a919ad14006 (patch) | |
| tree | 6adc4058f1bdc8108c645ef1cbf952f824e1f6be /gui/go.mod | |
| parent | 69e942371823638fbe24a94202189729f2f17ebc (diff) | |
| download | krino-4f98392c9a062e9d4dd8363a2ede9a919ad14006.tar.gz krino-4f98392c9a062e9d4dd8363a2ede9a919ad14006.zip | |
gui module: the plan tab's model, with tests
Diffstat (limited to 'gui/go.mod')
| -rw-r--r-- | gui/go.mod | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gui/go.mod b/gui/go.mod new file mode 100644 index 0000000..3e8439d --- /dev/null +++ b/gui/go.mod @@ -0,0 +1,16 @@ +module krino/gui + +go 1.25.0 + +toolchain go1.26.8 + +require github.com/diamondburned/gotk4/pkg v0.4.1 + +require golang.org/x/text v0.41.0 // indirect + +require ( + golang.org/x/sync v0.22.0 // indirect + krino v0.0.0 +) + +replace krino => ../ |
