Skip to content

Instantly share code, notes, and snippets.

@musketyr
Created August 3, 2021 08:07
Show Gist options
  • Save musketyr/d96fc71f93c367be4a826110a5e7082a to your computer and use it in GitHub Desktop.
Save musketyr/d96fc71f93c367be4a826110a5e7082a to your computer and use it in GitHub Desktop.
import io.micronaut.data.annotation.Repository
import io.micronaut.data.repository.CrudRepository
@Repository
interface VehicleRepository extends CrudRepository<Vehicle, Long> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment