summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-08-17 23:12:01 -0400
committerSam Anthony <sam@samanthony.xyz>2024-08-17 23:12:01 -0400
commita769388f642257e293abe501e53c6cafef2fa29a (patch)
tree8259624ae5753d77c7eacac29eb6fd0dd864bda0
downloadshare-a769388f642257e293abe501e53c6cafef2fa29a.zip
package documentation
-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