Files
Backend/src/main/java/cc/fascinated/repository/MinecraftServerCacheRepository.java
Liam 2ea58d8080
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Failing after 17s
make the skin renderer less bad (thanks bray)
2024-04-12 18:46:54 +01:00

11 lines
345 B
Java

package cc.fascinated.repository;
import cc.fascinated.model.cache.CachedMinecraftServer;
import org.springframework.data.repository.CrudRepository;
/**
* A cache repository for {@link CachedMinecraftServer}'s.
*
* @author Braydon
*/
public interface MinecraftServerCacheRepository extends CrudRepository<CachedMinecraftServer, String> { }