spring-boot-realworld-examp.../src/main/java/io/spring/core/comment/CommentRepository.java

10 lines
177 B
Java
Raw Normal View History

2017-08-15 15:36:07 +07:00
package io.spring.core.comment;
import java.util.Optional;
public interface CommentRepository {
void save(Comment comment);
Optional<Comment> findById(String id);
}