Created
March 11, 2020 02:35
-
-
Save gdonega/d8c4da37251e145a0a4557ea86ca41f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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