generated from leanix/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cid-2908: Add send manifest files to the backend
- Loading branch information
1 parent
ff4e492
commit 08df32b
Showing
3 changed files
with
131 additions
and
4 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/main/kotlin/net/leanix/githubagent/dto/ManifestFilesDTO.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package net.leanix.githubagent.dto | ||
|
||
data class ManifestFilesDTO( | ||
val repositoryId: String, | ||
val repositoryFullName: String, | ||
val manifestFiles: List<ManifestFileDTO> | ||
) | ||
|
||
data class ManifestFileDTO( | ||
val path: String, | ||
val content: String?, | ||
) |
This file contains 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
This file contains 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