commit 0018750f0851d5b427828bfbdfc7968ae3c398c3 Author: David Fifield david@bamsoftware.com Date: Wed Sep 15 14:37:36 2021 -0600
Add a go.mod file.
This is an attempt to fix a warning message observed when trying to build the Snowflake proxy. https://bugs.torproject.org/tpo/anti-censorship/pluggable-transports/snowfla... --- ChangeLog | 3 +++ go.mod | 3 +++ 2 files changed, 6 insertions(+)
diff --git a/ChangeLog b/ChangeLog index 12391ca..a25f5a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,9 @@ to update it: git branch --move master main git branch --set-upstream-to=origin/main main
+Added a go.mod file. +https://bugs.torproject.org/tpo/anti-censorship/pluggable-transports/snowfla... + == v1.1.0
Added the Log function. diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..aec837f --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.torproject.org/pluggable-transports/goptlib.git + +go 1.11