diff options
author | franck cuny <franck@fcuny.net> | 2020-01-11 13:31:43 +0100 |
---|---|---|
committer | franck cuny <franck@fcuny.net> | 2020-01-11 13:31:43 +0100 |
commit | 2b27536980956f07d2ac94b763eca4b2262fecd4 (patch) | |
tree | 2e6e80fdff92090755db8bb5364bef487bac2861 /users | |
parent | Add README.md, LICENSE.txt (diff) | |
download | world-2b27536980956f07d2ac94b763eca4b2262fecd4.tar.gz |
go.mod: create the module 'monkey'
The project is named monkey, we add a mod file to ensure that the tooling / dependencies are set up correctly when we import various modules in this project.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/exp/monkey/go.mod | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/users/fcuny/exp/monkey/go.mod b/users/fcuny/exp/monkey/go.mod new file mode 100644 index 0000000..34c713d --- /dev/null +++ b/users/fcuny/exp/monkey/go.mod @@ -0,0 +1,3 @@ +module monkey + +go 1.12 |