11 lines
332 B
Java
11 lines
332 B
Java
|
package cc.fascinated.repository;
|
||
|
|
||
|
import cc.fascinated.model.cache.CachedEndpointStatus;
|
||
|
import org.springframework.data.repository.CrudRepository;
|
||
|
|
||
|
/**
|
||
|
* A cache repository for the Mojang endpoint status.
|
||
|
*
|
||
|
* @author Braydon
|
||
|
*/
|
||
|
public interface EndpointStatusRepository extends CrudRepository<CachedEndpointStatus, String> { }
|