summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-19 19:23:05 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-19 19:23:05 -0400
commit9bc0c33a952dc906344964890bce58761d6ce2c7 (patch)
treec2ec7bdf4369f97010f3496bd7d85c7da83abb2b /go.mod
feat: Initial Commit, Partial Functionality
This is the initial commit. The url-shortener is partially functional. URLs can be shortened and stored for the runtime of the program. API keys are not checked, nothing is persistent, and short URLs are size limited to 4 alpha numeric characters.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod3
1 files changed, 3 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..cbace07
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module mcdonnell.dev/url-shortener
+
+go 1.26.1