mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
13 lines
186 B
Go
13 lines
186 B
Go
package temporal
|
|
|
|
type ActivityCheckParam struct {
|
|
Script string
|
|
Target *Target
|
|
}
|
|
|
|
type ActivityCheckResult struct {
|
|
Success bool
|
|
Note string
|
|
}
|
|
|
|
const ActivityCheckName = "CHECK"
|