Skip to content

Instantly share code, notes, and snippets.

@javatodev
Created February 10, 2021 03:14
Show Gist options
  • Save javatodev/b487ef98d6a81106a0f1cec5404e85ca to your computer and use it in GitHub Desktop.
Save javatodev/b487ef98d6a81106a0f1cec5404e85ca to your computer and use it in GitHub Desktop.
package com.javatodev.api.repository.user;
import com.javatodev.api.model.user.UserEntity;
import org.springframework.data.jpa.repository.JpaRepository;
public interface UserRepository extends JpaRepository<UserEntity, Long> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment