From 1b9b344a0d94890fe8f83c15583d03d954bd9684 Mon Sep 17 00:00:00 2001 From: Emile Date: Wed, 13 Feb 2019 13:37:51 +0100 Subject: added support for go modules --- go.mod | 6 ++++++ go.sum | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..77c880d --- /dev/null +++ b/go.mod @@ -0,0 +1,6 @@ +module git.darknebu.la/GalaxySimulator/db_actions + +require ( + git.darknebu.la/GalaxySimulator/structs v0.0.0-20190205205735-9dd56b9448e5 + github.com/lib/pq v1.0.0 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..9bfcac7 --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +git.darknebu.la/GalaxySimulator/structs v0.0.0-20190205205735-9dd56b9448e5 h1:aEQHEERwdLfRJrXb867wZzRMs1ym+j0zDys3opLWPew= +git.darknebu.la/GalaxySimulator/structs v0.0.0-20190205205735-9dd56b9448e5/go.mod h1:LSDIBBC7IcWERm4wlDAroMpsUP7zJ1yDZFlQnP/UIsQ= +github.com/lib/pq v1.0.0 h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -- cgit 1.4.1