mirror of
https://github.com/usual2970/certimate.git
synced 2025-07-25 23:08:34 +00:00
.github
.vscode
docker
internal
app
applicant
certificate
deployer
domain
dtos
certificate.go
notify.go
workflow.go
access.go
acme_account.go
certificate.go
error.go
meta.go
notify.go
provider.go
settings.go
statistics.go
workflow.go
workflow_log.go
workflow_output.go
workflow_run.go
notify
pkg
repository
rest
scheduler
statistics
workflow
migrations
ui
.dockerignore
.editorconfig
.gitignore
.goreleaser.yml
CHANGELOG.md
CONTRIBUTING.md
CONTRIBUTING_EN.md
Dockerfile
LICENSE.md
Makefile
README.md
README_EN.md
go.mod
go.sum
main.go
nixpacks.toml
14 lines
314 B
Go
14 lines
314 B
Go
package dtos
|
|
|
|
import "github.com/usual2970/certimate/internal/domain"
|
|
|
|
type WorkflowStartRunReq struct {
|
|
WorkflowId string `json:"-"`
|
|
RunTrigger domain.WorkflowTriggerType `json:"trigger"`
|
|
}
|
|
|
|
type WorkflowCancelRunReq struct {
|
|
WorkflowId string `json:"-"`
|
|
RunId string `json:"-"`
|
|
}
|