summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc.go2
-rw-r--r--go.mod3
2 files changed, 5 insertions, 0 deletions
diff --git a/doc.go b/doc.go
new file mode 100644
index 0000000..9a323e9
--- /dev/null
+++ b/doc.go
@@ -0,0 +1,2 @@
+// Package share provides data structures for concurrent programming that are safe to share between goroutines.
+package share
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..47c5e42
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module git.samanthony.xyz/share
+
+go 1.22.4