9 lines
193 B
Erlang
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).
|