Created
December 22, 2023 14:33
-
-
Save mihaita-tinta/74d2e33745df89df3311553da6dbace2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.mih.playground.driver; | |
import org.springframework.data.cassandra.repository.CassandraRepository; | |
import org.springframework.stereotype.Repository; | |
import java.util.UUID; | |
@Repository | |
public interface DriverRepository extends CassandraRepository<Driver, UUID> { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment