7 lines
227 B
Kotlin
7 lines
227 B
Kotlin
package com.baeldung
|
|
|
|
import org.springframework.data.mongodb.core.mapping.Document
|
|
import org.springframework.data.mongodb.repository.ReactiveMongoRepository
|
|
|
|
interface EventRepository : ReactiveMongoRepository<Event, String>
|