diff options
author | Emile <hanemile@protonmail.com> | 2019-02-13 13:37:51 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-02-13 13:37:51 +0100 |
commit | 1b9b344a0d94890fe8f83c15583d03d954bd9684 (patch) | |
tree | 7a710bf13ae5370217338cf0a80697e7af32a91a | |
parent | b93f9305a10444330022599541c35b6617be9783 (diff) |
added support for go modules
-rw-r--r-- | go.mod | 6 | ||||
-rw-r--r-- | go.sum | 4 |
2 files changed, 10 insertions, 0 deletions
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= |