Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created October 27, 2017 12:04
Show Gist options
  • Save khannedy/bc97e7372f69470f17b6be2f83218964 to your computer and use it in GitHub Desktop.
Save khannedy/bc97e7372f69470f17b6be2f83218964 to your computer and use it in GitHub Desktop.
package com.idspring.crudreactive.repository;
import com.idspring.crudreactive.entity.Category;
import org.springframework.data.mongodb.repository.ReactiveMongoRepository;
/**
* @author Eko Kurniawan Khannedy
* @since 24/10/17
*/
public interface CategoryRepository extends ReactiveMongoRepository<Category, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment