summaryrefslogtreecommitdiff
path: root/src/main/java/com/mavlushechka/notary/repository/RequestRepository.java
blob: 432111686974c58444ef56d438833705ce800b6d (plain)
1
2
3
4
5
6
7
8
9
package com.mavlushechka.notary.repository;

import com.mavlushechka.notary.model.Request;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface RequestRepository extends CrudRepository<Request, Long> {
}