1 package io.github.magwas.inez.storage.repository;
2
3 import org.springframework.data.repository.CrudRepository;
4 import org.springframework.stereotype.Repository;
5
6 import io.github.magwas.inez.InezProblem;
7
8 @Repository
9 public interface ProblemRepository extends CrudRepository<InezProblem, String> {}