From 361330460e1eca295a2dfef3fd9a8bad913b14d1 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Sun, 31 Aug 2025 20:59:20 -0500 Subject: [PATCH] first commit --- README.md | 5 +++++ go.mod | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 README.md create mode 100644 go.mod diff --git a/README.md b/README.md new file mode 100644 index 0000000..52765f9 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# EQ2 Protocol + +This library is meant to replicate EverQuest 2's UDP protocol. The work here is based on the immense +work done by contributors to the EQ2Emu project. I am porting it to Go with the idea of a simpler, faster +development pipeline - and as a personal experiment. \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..296403e --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.sharkk.net/EQ2/Protocol + +go 1.25.0