diff --git a/kotlin/rag-with-kotlin/src/main/kotlin/com/example/rag_with_kotlin/RagWithKotlinApplication.kt b/kotlin/rag-with-kotlin/src/main/kotlin/com/example/rag_with_kotlin/RagWithKotlinApplication.kt index 818e2c4..0c14a14 100644 --- a/kotlin/rag-with-kotlin/src/main/kotlin/com/example/rag_with_kotlin/RagWithKotlinApplication.kt +++ b/kotlin/rag-with-kotlin/src/main/kotlin/com/example/rag_with_kotlin/RagWithKotlinApplication.kt @@ -12,6 +12,10 @@ import org.springframework.data.repository.ListCrudRepository import org.springframework.web.servlet.function.ServerResponse import org.springframework.web.servlet.function.router + +/** + * @author Josh Long + */ @SpringBootApplication class RagWithKotlinApplication @@ -62,4 +66,4 @@ data class DogAdoptionSuggestion(val name: String, val id: Int, val description: interface DogRepository : ListCrudRepository -data class Dog(@Id val id: Int, val name: String, val owner: String?, val description: String) \ No newline at end of file +data class Dog(@Id val id: Int, val name: String, val owner: String?, val description: String)