From 22f54fd8f6b99f0d198656330e37688cc5987c65 Mon Sep 17 00:00:00 2001 From: Henry-Sarabia Date: Mon, 3 Feb 2020 21:11:58 -0800 Subject: [PATCH] Initialize Go module --- .vscode/settings.json | 3 +++ go.mod | 10 ++++++++++ go.sum | 8 ++++++++ 3 files changed, 21 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 go.mod create mode 100644 go.sum diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a460645 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "go.inferGopath": false +} \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..f8db954 --- /dev/null +++ b/go.mod @@ -0,0 +1,10 @@ +module github.com/Henry-Sarabia/igdb + +go 1.13 + +require ( + github.com/Henry-Sarabia/apicalypse v1.0.2 + github.com/Henry-Sarabia/blank v3.0.0+incompatible + github.com/Henry-Sarabia/sliceconv v1.0.2 + github.com/pkg/errors v0.9.1 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..99ebc5f --- /dev/null +++ b/go.sum @@ -0,0 +1,8 @@ +github.com/Henry-Sarabia/apicalypse v1.0.2 h1:rM2SrWlMgNwyuzP/Ty8dvc5iYb1pWVGa+kF0RvSPMoE= +github.com/Henry-Sarabia/apicalypse v1.0.2/go.mod h1:elNsoPyACTUScwfjuZc1DLN68zFbeyDo2XlJkF1omts= +github.com/Henry-Sarabia/blank v3.0.0+incompatible h1:3JfHWx7YVr1bA+9aK1J2w9TrFpwAHfPibHOq4qwicSc= +github.com/Henry-Sarabia/blank v3.0.0+incompatible/go.mod h1:EKLnM7Lq0E08WmivZuJoo099i07THd4ISgOBs3wOKTw= +github.com/Henry-Sarabia/sliceconv v1.0.2 h1:1zH/sJmocRZz1g1FrmU06GsbskWLWglj6IHhFB9TdBA= +github.com/Henry-Sarabia/sliceconv v1.0.2/go.mod h1:FNvuZcThTpCgAjQQZjPSx7PkS/DYRT6jTV3oPQGP2lU= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=