Skip to content

Commit

Permalink
Add ObjectStorageService
Browse files Browse the repository at this point in the history
  • Loading branch information
fuku2014 committed Jun 10, 2022
1 parent 44b3e0d commit cb8b7cf
Show file tree
Hide file tree
Showing 109 changed files with 28,490 additions and 15 deletions.
11 changes: 9 additions & 2 deletions codegen/sdk-codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,15 @@ tasks.create<Exec>("copyGoCodegen") {
}
tasks["buildSdk"].finalizedBy(tasks["copyGoCodegen"])

tasks.create<Exec>("modapi") {
tasks.create("modapi") {
dependsOn ("copyGoCodegen")
commandLine ("go", "run", "-tags", "codegen", "$rootDir/../private/model/cli/mod-api/main.go", "-path", "$rootDir/../service")
doLast {
exec {
commandLine ("go", "run", "-tags", "codegen", "$rootDir/../private/model/cli/mod-api/main.go", "-path", "$rootDir/../internal")
}
exec {
commandLine ("go", "run", "-tags", "codegen", "$rootDir/../private/model/cli/mod-api/main.go", "-path", "$rootDir/../service")
}
}
}
tasks["copyGoCodegen"].finalizedBy(tasks["modapi"])
Loading

0 comments on commit cb8b7cf

Please sign in to comment.