From cd0433711bc89fba0f83bc274e83e4ea71adb265 Mon Sep 17 00:00:00 2001 From: Sebastien Binet Date: Tue, 24 Jul 2018 12:58:41 +0200 Subject: [PATCH 1/2] draw2d: add Sebastien Binet to AUTHORS --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 32d23b0..a910f55 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ Laurent Le Goff Stani Michiels, gmail:stani.be Drahoslav Bednář +Sebastien Binet From 94de6e33b695b76aac1fb7dfe39cfc21ff818800 Mon Sep 17 00:00:00 2001 From: Sebastien Binet Date: Tue, 24 Jul 2018 12:57:52 +0200 Subject: [PATCH 2/2] draw2d: add support for Go modules --- go.mod | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..319694a --- /dev/null +++ b/go.mod @@ -0,0 +1,10 @@ +module github.com/llgcode/draw2d + +require ( + github.com/go-gl/gl v0.0.0-20180407155706-68e253793080 + github.com/go-gl/glfw v0.0.0-20180426074136-46a8d530c326 + github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 + github.com/jung-kurt/gofpdf v1.0.0 + github.com/llgcode/ps v0.0.0-20150911083025-f1443b32eedb + golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81 +)