erlang headers should be hrl

This commit is contained in:
Carlos Martín Nieto
2013-01-29 01:40:14 +01:00
parent 8a96f4732e
commit ad567fbf41
5 changed files with 4 additions and 4 deletions

9
src/geef_records.hrl Normal file
View File

@@ -0,0 +1,9 @@
-record(ref, {handle, type :: atom()}).
-record(repo, {handle}).
-record(odb, {handle}).
-record(oid, {oid}).
-type ref() :: #ref{}.
-type repo() :: #repo{}.
-type odb() :: #odb{}.
-type oid() :: #oid{}.