Skip to content

Instantly share code, notes, and snippets.

@kasramp
Created June 9, 2020 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasramp/51b63214c3a85a1bad8b67708c42c38e to your computer and use it in GitHub Desktop.
Save kasramp/51b63214c3a85a1bad8b67708c42c38e to your computer and use it in GitHub Desktop.
package com.madadipouya.quarkus.example.repository;
import com.madadipouya.quarkus.example.entity.User;
import io.quarkus.hibernate.orm.panache.PanacheRepository;
import javax.enterprise.context.ApplicationScoped;
@ApplicationScoped
public class UserRepository implements PanacheRepository<User> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment