All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m27s
11 lines
336 B
Java
11 lines
336 B
Java
package cc.fascinated.repository;
|
|
|
|
import cc.fascinated.model.cache.CachedEndpointStatus;
|
|
import org.springframework.data.repository.CrudRepository;
|
|
|
|
/**
|
|
* A cache repository for {@link CachedEndpointStatus}'s.
|
|
*
|
|
* @author Braydon
|
|
*/
|
|
public interface EndpointStatusRepository extends CrudRepository<CachedEndpointStatus, String> { } |