From 76dffdf2d766a4330f485a115594715095cc25e0 Mon Sep 17 00:00:00 2001 From: Josh Long Date: Fri, 15 Nov 2024 14:46:51 -0800 Subject: [PATCH] Update RagWithKotlinApplication.kt --- .../com/example/rag_with_kotlin/RagWithKotlinApplication.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)