diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-02-25 18:11:31 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-02-25 18:11:31 -0500 |
| commit | a89e2084d3c1a561d52749b033f783e5dcb6d7f7 (patch) | |
| tree | 647a6a732470c84b1074b93bc829a6829127cfc6 /examples/paint/go.mod | |
| parent | ed00d80d15daf82492cace0e51cc5584f0aae736 (diff) | |
| download | gui-a89e2084d3c1a561d52749b033f783e5dcb6d7f7.zip | |
create modules for library and examples
Diffstat (limited to 'examples/paint/go.mod')
| -rw-r--r-- | examples/paint/go.mod | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/paint/go.mod b/examples/paint/go.mod new file mode 100644 index 0000000..5cbc4cf --- /dev/null +++ b/examples/paint/go.mod @@ -0,0 +1,18 @@ +module github.com/faiface/gui/examples/paint + +go 1.25.5 + +require ( + github.com/faiface/gui v0.0.0-20190522095505-ed00d80d15da + github.com/faiface/mainthread v0.0.0-20171120011319-8b78f0a41ae3 + github.com/fogleman/gg v1.3.0 +) + +require ( + github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71 // indirect + github.com/go-gl/glfw v0.0.0-20250301202403-da16c1255728 // indirect + github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect + golang.org/x/image v0.36.0 // indirect +) + +replace github.com/faiface/gui => ../../ |