2024-04-13 15:34:19 +01:00
|
|
|
package cc.fascinated.repository;
|
|
|
|
|
|
|
|
import cc.fascinated.model.cache.CachedEndpointStatus;
|
|
|
|
import org.springframework.data.repository.CrudRepository;
|
|
|
|
|
|
|
|
/**
|
2024-04-13 15:42:30 +01:00
|
|
|
* A cache repository for {@link CachedEndpointStatus}'s.
|
2024-04-13 15:34:19 +01:00
|
|
|
*
|
|
|
|
* @author Braydon
|
|
|
|
*/
|
|
|
|
public interface EndpointStatusRepository extends CrudRepository<CachedEndpointStatus, String> { }
|