Files
geef/src/geef_odb.erl
2013-01-29 01:46:11 +01:00

9 lines
193 B
Erlang

-module(geef_odb).
-export([exists/2]).
-include("geef_records.hrl").
-spec exists(odb(), string()) -> boolean().
exists(#odb{handle=Handle}, Sha) ->
geef:odb_object_exists(Handle, Sha).