Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gdonega/d8c4da37251e145a0a4557ea86ca41f7 to your computer and use it in GitHub Desktop.
Save gdonega/d8c4da37251e145a0a4557ea86ca41f7 to your computer and use it in GitHub Desktop.
package com.testes.spring.mongodb.repositories;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
import com.testes.spring.mongodb.models.JogoModel;
@Repository
public interface JogoRepository extends MongoRepository<JogoModel, String>{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment