aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/exgit/packfile.ex6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/exgit/packfile.ex b/lib/exgit/packfile.ex
index 3823259..ebe1974 100644
--- a/lib/exgit/packfile.ex
+++ b/lib/exgit/packfile.ex
@@ -13,6 +13,10 @@ defmodule Exgit.Packfile do
binary,
binary}]
def parse_objects(n, pack) do
- nil
+ pack |> IO.inspect
+ end
+
+ defp parse_object(data) do
+ <<type :: size(4), _>> = data
end
end