UNPKG
skailan-contacts
Version:
latest (1.0.2)
1.0.2
Servicio de gestión de contactos para Skailan
github.com/skailan/skailan
skailan/skailan
skailan-contacts
/
dist
/
app
/
use-cases
/
GetTagById.js
11 lines
•
315 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
GetTagById
{ tagRepository;
constructor
(
tagRepository
) {
this
.
tagRepository
= tagRepository; }
async
execute
(
request
) {
const
{ id, organizationId } = request;
return
this
.
tagRepository
.
findById
(id, organizationId); } }
//# sourceMappingURL=GetTagById.js.map