add go.mod

We want it to be buildable by others, don't we?
This commit is contained in:
Gibheer 2021-04-22 10:07:16 +02:00
parent 9b3f2fddb1
commit 3f04987290
1 changed files with 9 additions and 0 deletions

9
go.mod Normal file
View File

@ -0,0 +1,9 @@
module dim
go 1.16
require (
github.com/go-sql-driver/mysql v1.6.0
github.com/lib/pq v1.10.1
github.com/pelletier/go-toml v1.9.0
)